Exemplo n.º 1
0
 public System.Threading.Tasks.Task <ClientApp.PatientService.UploadResponse> UploadAsync(int Id, string filename, string Data, int fs)
 {
     ClientApp.PatientService.UploadRequest inValue = new ClientApp.PatientService.UploadRequest();
     inValue.Body          = new ClientApp.PatientService.UploadRequestBody();
     inValue.Body.Id       = Id;
     inValue.Body.filename = filename;
     inValue.Body.Data     = Data;
     inValue.Body.fs       = fs;
     return(((ClientApp.PatientService.PatientServiceSoap)(this)).UploadAsync(inValue));
 }
Exemplo n.º 2
0
 public string Upload(int Id, string filename, string Data, int fs)
 {
     ClientApp.PatientService.UploadRequest inValue = new ClientApp.PatientService.UploadRequest();
     inValue.Body          = new ClientApp.PatientService.UploadRequestBody();
     inValue.Body.Id       = Id;
     inValue.Body.filename = filename;
     inValue.Body.Data     = Data;
     inValue.Body.fs       = fs;
     ClientApp.PatientService.UploadResponse retVal = ((ClientApp.PatientService.PatientServiceSoap)(this)).Upload(inValue);
     return(retVal.Body.UploadResult);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <ClientApp.PatientService.UploadResponse> ClientApp.PatientService.PatientServiceSoap.UploadAsync(ClientApp.PatientService.UploadRequest request)
 {
     return(base.Channel.UploadAsync(request));
 }
Exemplo n.º 4
0
 ClientApp.PatientService.UploadResponse ClientApp.PatientService.PatientServiceSoap.Upload(ClientApp.PatientService.UploadRequest request)
 {
     return(base.Channel.Upload(request));
 }