public WebServiceConsumer.CustomerListService.customer[] listCustomers(string city)
 {
     WebServiceConsumer.CustomerListService.listCustomersRequest inValue = new WebServiceConsumer.CustomerListService.listCustomersRequest();
     inValue.city = city;
     WebServiceConsumer.CustomerListService.listCustomersResponse retVal = ((WebServiceConsumer.CustomerListService.CustomerList)(this)).listCustomers(inValue);
     return(retVal.@return);
 }
 public System.Threading.Tasks.Task <WebServiceConsumer.CustomerListService.listCustomersResponse> listCustomersAsync(string city)
 {
     WebServiceConsumer.CustomerListService.listCustomersRequest inValue = new WebServiceConsumer.CustomerListService.listCustomersRequest();
     inValue.city = city;
     return(((WebServiceConsumer.CustomerListService.CustomerList)(this)).listCustomersAsync(inValue));
 }
 System.Threading.Tasks.Task <WebServiceConsumer.CustomerListService.listCustomersResponse> WebServiceConsumer.CustomerListService.CustomerList.listCustomersAsync(WebServiceConsumer.CustomerListService.listCustomersRequest request)
 {
     return(base.Channel.listCustomersAsync(request));
 }
 WebServiceConsumer.CustomerListService.listCustomersResponse WebServiceConsumer.CustomerListService.CustomerList.listCustomers(WebServiceConsumer.CustomerListService.listCustomersRequest request)
 {
     return(base.Channel.listCustomers(request));
 }