Example #1
0
 public System.Threading.Tasks.Task <CarajDesktop.AuthService.CompanyLoginResponse> CompanyLoginAsync(string companyname, string password)
 {
     CarajDesktop.AuthService.CompanyLoginRequest inValue = new CarajDesktop.AuthService.CompanyLoginRequest();
     inValue.Body             = new CarajDesktop.AuthService.CompanyLoginRequestBody();
     inValue.Body.companyname = companyname;
     inValue.Body.password    = password;
     return(((CarajDesktop.AuthService.AuthServiceSoap)(this)).CompanyLoginAsync(inValue));
 }
Example #2
0
 public CarajDesktop.AuthService.CompanyLoginResponseDto CompanyLogin(string companyname, string password)
 {
     CarajDesktop.AuthService.CompanyLoginRequest inValue = new CarajDesktop.AuthService.CompanyLoginRequest();
     inValue.Body             = new CarajDesktop.AuthService.CompanyLoginRequestBody();
     inValue.Body.companyname = companyname;
     inValue.Body.password    = password;
     CarajDesktop.AuthService.CompanyLoginResponse retVal = ((CarajDesktop.AuthService.AuthServiceSoap)(this)).CompanyLogin(inValue);
     return(retVal.Body.CompanyLoginResult);
 }
Example #3
0
 System.Threading.Tasks.Task <CarajDesktop.AuthService.CompanyLoginResponse> CarajDesktop.AuthService.AuthServiceSoap.CompanyLoginAsync(CarajDesktop.AuthService.CompanyLoginRequest request)
 {
     return(base.Channel.CompanyLoginAsync(request));
 }
Example #4
0
 CarajDesktop.AuthService.CompanyLoginResponse CarajDesktop.AuthService.AuthServiceSoap.CompanyLogin(CarajDesktop.AuthService.CompanyLoginRequest request)
 {
     return(base.Channel.CompanyLogin(request));
 }