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)); }
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); }
System.Threading.Tasks.Task <Unit_Converter.AlaService.CurrencyConverterResponse> Unit_Converter.AlaService.WebService1Soap.CurrencyConverterAsync(Unit_Converter.AlaService.CurrencyConverterRequest request) { return(base.Channel.CurrencyConverterAsync(request)); }
Unit_Converter.AlaService.CurrencyConverterResponse Unit_Converter.AlaService.WebService1Soap.CurrencyConverter(Unit_Converter.AlaService.CurrencyConverterRequest request) { return(base.Channel.CurrencyConverter(request)); }