Example #1
0
 public System.Threading.Tasks.Task <Common.Specflow.TestHelperService.CreateUserResponse> CreateUserAsync(string userName, string password)
 {
     Common.Specflow.TestHelperService.CreateUserRequest inValue = new Common.Specflow.TestHelperService.CreateUserRequest();
     inValue.Body          = new Common.Specflow.TestHelperService.CreateUserRequestBody();
     inValue.Body.userName = userName;
     inValue.Body.password = password;
     return(((Common.Specflow.TestHelperService.AutoTestsHelperServiceSoap)(this)).CreateUserAsync(inValue));
 }
Example #2
0
 public bool CreateUser(string userName, string password)
 {
     Common.Specflow.TestHelperService.CreateUserRequest inValue = new Common.Specflow.TestHelperService.CreateUserRequest();
     inValue.Body          = new Common.Specflow.TestHelperService.CreateUserRequestBody();
     inValue.Body.userName = userName;
     inValue.Body.password = password;
     Common.Specflow.TestHelperService.CreateUserResponse retVal = ((Common.Specflow.TestHelperService.AutoTestsHelperServiceSoap)(this)).CreateUser(inValue);
     return(retVal.Body.CreateUserResult);
 }
Example #3
0
 System.Threading.Tasks.Task <Common.Specflow.TestHelperService.CreateUserResponse> Common.Specflow.TestHelperService.AutoTestsHelperServiceSoap.CreateUserAsync(Common.Specflow.TestHelperService.CreateUserRequest request)
 {
     return(base.Channel.CreateUserAsync(request));
 }
Example #4
0
 Common.Specflow.TestHelperService.CreateUserResponse Common.Specflow.TestHelperService.AutoTestsHelperServiceSoap.CreateUser(Common.Specflow.TestHelperService.CreateUserRequest request)
 {
     return(base.Channel.CreateUser(request));
 }