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

signNote() private method

private signNote ( string noteIEN, string userDUZ, string esig ) : TextTO
noteIEN string
userDUZ string
esig string
return TextTO
        public TextTO signNote(string noteIEN, string userDUZ, string esig)
        {
            NoteLib lib = new NoteLib(MySession);
            return lib.signNote(noteIEN, userDUZ, esig);
        }
EmrSvc