public System.Threading.Tasks.Task <MyStoreApp.MyService.UpdateDataResponse> UpdateDataAsync(int Id, string Title, string FirstName, string LastName, string Email, string MobileNo, string Course)
 {
     MyStoreApp.MyService.UpdateDataRequest inValue = new MyStoreApp.MyService.UpdateDataRequest();
     inValue.Body           = new MyStoreApp.MyService.UpdateDataRequestBody();
     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)).UpdateDataAsync(inValue));
 }
 System.Threading.Tasks.Task <MyStoreApp.MyService.UpdateDataResponse> MyStoreApp.MyService.dbServiceSoap.UpdateDataAsync(MyStoreApp.MyService.UpdateDataRequest request)
 {
     return(base.Channel.UpdateDataAsync(request));
 }