Beispiel #1
0
 public string Login(ClientApp.PatientService.AccountCredentials account)
 {
     ClientApp.PatientService.LoginRequest inValue = new ClientApp.PatientService.LoginRequest();
     inValue.Body         = new ClientApp.PatientService.LoginRequestBody();
     inValue.Body.account = account;
     ClientApp.PatientService.LoginResponse retVal = ((ClientApp.PatientService.PatientServiceSoap)(this)).Login(inValue);
     return(retVal.Body.LoginResult);
 }
Beispiel #2
0
 public string register(ClientApp.PatientService.Patient patient, ClientApp.PatientService.AccountCredentials account)
 {
     ClientApp.PatientService.registerRequest inValue = new ClientApp.PatientService.registerRequest();
     inValue.Body         = new ClientApp.PatientService.registerRequestBody();
     inValue.Body.patient = patient;
     inValue.Body.account = account;
     ClientApp.PatientService.registerResponse retVal = ((ClientApp.PatientService.PatientServiceSoap)(this)).register(inValue);
     return(retVal.Body.registerResult);
 }
Beispiel #3
0
 public System.Threading.Tasks.Task <ClientApp.PatientService.LoginResponse> LoginAsync(ClientApp.PatientService.AccountCredentials account)
 {
     ClientApp.PatientService.LoginRequest inValue = new ClientApp.PatientService.LoginRequest();
     inValue.Body         = new ClientApp.PatientService.LoginRequestBody();
     inValue.Body.account = account;
     return(((ClientApp.PatientService.PatientServiceSoap)(this)).LoginAsync(inValue));
 }
Beispiel #4
0
 public LoginRequestBody(ClientApp.PatientService.AccountCredentials account)
 {
     this.account = account;
 }
Beispiel #5
0
 public registerRequestBody(ClientApp.PatientService.Patient patient, ClientApp.PatientService.AccountCredentials account)
 {
     this.patient = patient;
     this.account = account;
 }