Ejemplo n.º 1
0
 public System.Threading.Tasks.Task <FiitCustomerService.registerResponse> registerAsync(string team_id, string name, string surname, string email, string gender, string currency, double coord_lat, double coord_lon, string born_at)
 {
     FiitCustomerService.registerRequest inValue = new FiitCustomerService.registerRequest();
     inValue.team_id   = team_id;
     inValue.name      = name;
     inValue.surname   = surname;
     inValue.email     = email;
     inValue.gender    = gender;
     inValue.currency  = currency;
     inValue.coord_lat = coord_lat;
     inValue.coord_lon = coord_lon;
     inValue.born_at   = born_at;
     return(((FiitCustomerService.CustomerPortType)(this)).registerAsync(inValue));
 }
Ejemplo n.º 2
0
 System.Threading.Tasks.Task <FiitCustomerService.registerResponse> FiitCustomerService.CustomerPortType.registerAsync(FiitCustomerService.registerRequest request)
 {
     return(base.Channel.registerAsync(request));
 }