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

getUnsignedNotes() private method

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