Exemple #1
0
 public CreateRequestBody(string accountNo, IstaNoteClient.IstaNoteService.NoteStatusOptions noteStatus, IstaNoteClient.IstaNoteService.NotePriorityOptions notePriority, int noteTypeID, int noteTypeDetailId, int noteDepartmentId, int openByUserId, System.DateTime callBegin, System.DateTime callEnd, System.DateTime closeDate, IstaNoteClient.IstaNoteService.NoteCallTypeOptions callType, string noteText)
 {
     this.accountNo        = accountNo;
     this.noteStatus       = noteStatus;
     this.notePriority     = notePriority;
     this.noteTypeID       = noteTypeID;
     this.noteTypeDetailId = noteTypeDetailId;
     this.noteDepartmentId = noteDepartmentId;
     this.openByUserId     = openByUserId;
     this.callBegin        = callBegin;
     this.callEnd          = callEnd;
     this.closeDate        = closeDate;
     this.callType         = callType;
     this.noteText         = noteText;
 }
Exemple #2
0
 public System.Threading.Tasks.Task <IstaNoteClient.IstaNoteService.CreateResponse> CreateAsync(string accountNo, IstaNoteClient.IstaNoteService.NoteStatusOptions noteStatus, IstaNoteClient.IstaNoteService.NotePriorityOptions notePriority, int noteTypeID, int noteTypeDetailId, int noteDepartmentId, int openByUserId, System.DateTime callBegin, System.DateTime callEnd, System.DateTime closeDate, IstaNoteClient.IstaNoteService.NoteCallTypeOptions callType, string noteText)
 {
     IstaNoteClient.IstaNoteService.CreateRequest inValue = new IstaNoteClient.IstaNoteService.CreateRequest();
     inValue.Body                  = new IstaNoteClient.IstaNoteService.CreateRequestBody();
     inValue.Body.accountNo        = accountNo;
     inValue.Body.noteStatus       = noteStatus;
     inValue.Body.notePriority     = notePriority;
     inValue.Body.noteTypeID       = noteTypeID;
     inValue.Body.noteTypeDetailId = noteTypeDetailId;
     inValue.Body.noteDepartmentId = noteDepartmentId;
     inValue.Body.openByUserId     = openByUserId;
     inValue.Body.callBegin        = callBegin;
     inValue.Body.callEnd          = callEnd;
     inValue.Body.closeDate        = closeDate;
     inValue.Body.callType         = callType;
     inValue.Body.noteText         = noteText;
     return(((IstaNoteClient.IstaNoteService.NoteSoap)(this)).CreateAsync(inValue));
 }