예제 #1
0
 public System.Threading.Tasks.Task <CandyStore.Client.OrderServiceProxy.PlaceOrderResponse> PlaceOrderAsync(CandyStore.Client.OrderServiceProxy.CustomerDto customer, string supplierName, CandyStore.Client.OrderServiceProxy.ProductDto[] products)
 {
     CandyStore.Client.OrderServiceProxy.PlaceOrderRequest inValue = new CandyStore.Client.OrderServiceProxy.PlaceOrderRequest();
     inValue.Body              = new CandyStore.Client.OrderServiceProxy.PlaceOrderRequestBody();
     inValue.Body.customer     = customer;
     inValue.Body.supplierName = supplierName;
     inValue.Body.products     = products;
     return(((CandyStore.Client.OrderServiceProxy.OrderServiceSoap)(this)).PlaceOrderAsync(inValue));
 }
예제 #2
0
 public void PlaceOrder(CandyStore.Client.OrderServiceProxy.CustomerDto customer, string supplierName, CandyStore.Client.OrderServiceProxy.ProductDto[] products)
 {
     CandyStore.Client.OrderServiceProxy.PlaceOrderRequest inValue = new CandyStore.Client.OrderServiceProxy.PlaceOrderRequest();
     inValue.Body              = new CandyStore.Client.OrderServiceProxy.PlaceOrderRequestBody();
     inValue.Body.customer     = customer;
     inValue.Body.supplierName = supplierName;
     inValue.Body.products     = products;
     CandyStore.Client.OrderServiceProxy.PlaceOrderResponse retVal = ((CandyStore.Client.OrderServiceProxy.OrderServiceSoap)(this)).PlaceOrder(inValue);
 }
예제 #3
0
 System.Threading.Tasks.Task <CandyStore.Client.OrderServiceProxy.PlaceOrderResponse> CandyStore.Client.OrderServiceProxy.OrderServiceSoap.PlaceOrderAsync(CandyStore.Client.OrderServiceProxy.PlaceOrderRequest request)
 {
     return(base.Channel.PlaceOrderAsync(request));
 }
예제 #4
0
 CandyStore.Client.OrderServiceProxy.PlaceOrderResponse CandyStore.Client.OrderServiceProxy.OrderServiceSoap.PlaceOrder(CandyStore.Client.OrderServiceProxy.PlaceOrderRequest request)
 {
     return(base.Channel.PlaceOrder(request));
 }