예제 #1
0
 public System.Threading.Tasks.Task <ABCosmetic_app.ProductService.SearchProductsByPriceRangeResponse> SearchProductsByPriceRangeAsync(decimal low, decimal high)
 {
     ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequest inValue = new ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequest();
     inValue.Body      = new ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequestBody();
     inValue.Body.low  = low;
     inValue.Body.high = high;
     return(((ABCosmetic_app.ProductService.ProductServiceSoap)(this)).SearchProductsByPriceRangeAsync(inValue));
 }
예제 #2
0
 public System.Collections.Generic.List <ABCosmetic_app.ProductService.Product> SearchProductsByPriceRange(decimal low, decimal high)
 {
     ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequest inValue = new ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequest();
     inValue.Body      = new ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequestBody();
     inValue.Body.low  = low;
     inValue.Body.high = high;
     ABCosmetic_app.ProductService.SearchProductsByPriceRangeResponse retVal = ((ABCosmetic_app.ProductService.ProductServiceSoap)(this)).SearchProductsByPriceRange(inValue);
     return(retVal.Body.SearchProductsByPriceRangeResult);
 }
예제 #3
0
 System.Threading.Tasks.Task <ABCosmetic_app.ProductService.SearchProductsByPriceRangeResponse> ABCosmetic_app.ProductService.ProductServiceSoap.SearchProductsByPriceRangeAsync(ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequest request)
 {
     return(base.Channel.SearchProductsByPriceRangeAsync(request));
 }
예제 #4
0
 ABCosmetic_app.ProductService.SearchProductsByPriceRangeResponse ABCosmetic_app.ProductService.ProductServiceSoap.SearchProductsByPriceRange(ABCosmetic_app.ProductService.SearchProductsByPriceRangeRequest request)
 {
     return(base.Channel.SearchProductsByPriceRange(request));
 }