Ejemplo n.º 1
0
 public System.Threading.Tasks.Task <MyStoreApp.MyService.InsertDataResponse> InsertDataAsync(int Id, string Title, string FirstName, string LastName, string Email, string MobileNo, string Course)
 {
     MyStoreApp.MyService.InsertDataRequest inValue = new MyStoreApp.MyService.InsertDataRequest();
     inValue.Body           = new MyStoreApp.MyService.InsertDataRequestBody();
     inValue.Body.Id        = Id;
     inValue.Body.Title     = Title;
     inValue.Body.FirstName = FirstName;
     inValue.Body.LastName  = LastName;
     inValue.Body.Email     = Email;
     inValue.Body.MobileNo  = MobileNo;
     inValue.Body.Course    = Course;
     return(((MyStoreApp.MyService.dbServiceSoap)(this)).InsertDataAsync(inValue));
 }
Ejemplo n.º 2
0
 System.Threading.Tasks.Task <MyStoreApp.MyService.InsertDataResponse> MyStoreApp.MyService.dbServiceSoap.InsertDataAsync(MyStoreApp.MyService.InsertDataRequest request)
 {
     return(base.Channel.InsertDataAsync(request));
 }