gov.va.medora.mdws.EmrSvc.getUncosignedNotes C# (CSharp) Method

getUncosignedNotes() private method

private getUncosignedNotes ( string fromDate, string toDate, int nNotes ) : TaggedNoteArrays
fromDate string
toDate string
nNotes int
return gov.va.medora.mdws.dto.TaggedNoteArrays
        public TaggedNoteArrays getUncosignedNotes(string fromDate, string toDate, int nNotes)
        {
            return (TaggedNoteArrays)MySession.execute("NoteLib", "getUncosignedNotes", new object[] { fromDate, toDate, nNotes });
        }
EmrSvc