Пример #1
0
 public System.Threading.Tasks.Task <MLVApplication.SellingService.sellBookResponse> sellBookAsync(long id, string password, double price, string currency)
 {
     MLVApplication.SellingService.sellBookRequest inValue = new MLVApplication.SellingService.sellBookRequest();
     inValue.Body          = new MLVApplication.SellingService.sellBookRequestBody();
     inValue.Body.id       = id;
     inValue.Body.password = password;
     inValue.Body.price    = price;
     inValue.Body.currency = currency;
     return(((MLVApplication.SellingService.SellingService)(this)).sellBookAsync(inValue));
 }
Пример #2
0
 public bool sellBook(long id, string password, double price, string currency)
 {
     MLVApplication.SellingService.sellBookRequest inValue = new MLVApplication.SellingService.sellBookRequest();
     inValue.Body          = new MLVApplication.SellingService.sellBookRequestBody();
     inValue.Body.id       = id;
     inValue.Body.password = password;
     inValue.Body.price    = price;
     inValue.Body.currency = currency;
     MLVApplication.SellingService.sellBookResponse retVal = ((MLVApplication.SellingService.SellingService)(this)).sellBook(inValue);
     return(retVal.Body.sellBookReturn);
 }
Пример #3
0
 System.Threading.Tasks.Task <MLVApplication.SellingService.sellBookResponse> MLVApplication.SellingService.SellingService.sellBookAsync(MLVApplication.SellingService.sellBookRequest request)
 {
     return(base.Channel.sellBookAsync(request));
 }
Пример #4
0
 MLVApplication.SellingService.sellBookResponse MLVApplication.SellingService.SellingService.sellBook(MLVApplication.SellingService.sellBookRequest request)
 {
     return(base.Channel.sellBook(request));
 }