Esempio n. 1
0
 public System.Threading.Tasks.Task <StockTicker.Cmd.AccountServiceReference.RegisterResponse> RegisterAsync(string fullName, string email, string password)
 {
     StockTicker.Cmd.AccountServiceReference.RegisterRequest inValue = new StockTicker.Cmd.AccountServiceReference.RegisterRequest();
     inValue.Body          = new StockTicker.Cmd.AccountServiceReference.RegisterRequestBody();
     inValue.Body.fullName = fullName;
     inValue.Body.email    = email;
     inValue.Body.password = password;
     return(((StockTicker.Cmd.AccountServiceReference.AccountWebServiceSoap)(this)).RegisterAsync(inValue));
 }
Esempio n. 2
0
 public StockTicker.Cmd.AccountServiceReference.ResultModelOfUserModel Register(string fullName, string email, string password)
 {
     StockTicker.Cmd.AccountServiceReference.RegisterRequest inValue = new StockTicker.Cmd.AccountServiceReference.RegisterRequest();
     inValue.Body          = new StockTicker.Cmd.AccountServiceReference.RegisterRequestBody();
     inValue.Body.fullName = fullName;
     inValue.Body.email    = email;
     inValue.Body.password = password;
     StockTicker.Cmd.AccountServiceReference.RegisterResponse retVal = ((StockTicker.Cmd.AccountServiceReference.AccountWebServiceSoap)(this)).Register(inValue);
     return(retVal.Body.RegisterResult);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <StockTicker.Cmd.AccountServiceReference.RegisterResponse> StockTicker.Cmd.AccountServiceReference.AccountWebServiceSoap.RegisterAsync(StockTicker.Cmd.AccountServiceReference.RegisterRequest request)
 {
     return(base.Channel.RegisterAsync(request));
 }
Esempio n. 4
0
 StockTicker.Cmd.AccountServiceReference.RegisterResponse StockTicker.Cmd.AccountServiceReference.AccountWebServiceSoap.Register(StockTicker.Cmd.AccountServiceReference.RegisterRequest request)
 {
     return(base.Channel.Register(request));
 }