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

signNote() public method

public signNote ( string noteId, string userId, string esig ) : TextTO
noteId string
userId string
esig string
return gov.va.medora.mdws.dto.TextTO
        public TextTO signNote(string noteId, string userId, string esig)
        {
            return signNote(null, noteId, userId, esig);
        }

Same methods

NoteLib::signNote ( string sitecode, string noteId, string userId, string esig ) : TextTO

Usage Example

Ejemplo n.º 1
0
        public TextTO signNote(string noteIEN, string userDUZ, string esig)
        {
            NoteLib lib = new NoteLib(MySession);

            return(lib.signNote(noteIEN, userDUZ, esig));
        }
All Usage Examples Of gov.va.medora.mdws.NoteLib::signNote