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

getSignedNotes() private method

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