Пример #1
0
 public System.Threading.Tasks.Task <Unit_Converter.AlaService.CurrencyConverterResponse> CurrencyConverterAsync(string from, string to, string value)
 {
     Unit_Converter.AlaService.CurrencyConverterRequest inValue = new Unit_Converter.AlaService.CurrencyConverterRequest();
     inValue.Body       = new Unit_Converter.AlaService.CurrencyConverterRequestBody();
     inValue.Body.from  = from;
     inValue.Body.to    = to;
     inValue.Body.value = value;
     return(((Unit_Converter.AlaService.WebService1Soap)(this)).CurrencyConverterAsync(inValue));
 }
Пример #2
0
 public string CurrencyConverter(string from, string to, string value)
 {
     Unit_Converter.AlaService.CurrencyConverterRequest inValue = new Unit_Converter.AlaService.CurrencyConverterRequest();
     inValue.Body       = new Unit_Converter.AlaService.CurrencyConverterRequestBody();
     inValue.Body.from  = from;
     inValue.Body.to    = to;
     inValue.Body.value = value;
     Unit_Converter.AlaService.CurrencyConverterResponse retVal = ((Unit_Converter.AlaService.WebService1Soap)(this)).CurrencyConverter(inValue);
     return(retVal.Body.CurrencyConverterResult);
 }
Пример #3
0
 System.Threading.Tasks.Task <Unit_Converter.AlaService.CurrencyConverterResponse> Unit_Converter.AlaService.WebService1Soap.CurrencyConverterAsync(Unit_Converter.AlaService.CurrencyConverterRequest request)
 {
     return(base.Channel.CurrencyConverterAsync(request));
 }
Пример #4
0
 Unit_Converter.AlaService.CurrencyConverterResponse Unit_Converter.AlaService.WebService1Soap.CurrencyConverter(Unit_Converter.AlaService.CurrencyConverterRequest request)
 {
     return(base.Channel.CurrencyConverter(request));
 }