Exemplo n.º 1
0
 public System.Threading.Tasks.Task <WebUI2.SearchAddress.findAddressResponse> findAddressAsync(string houseNumber, string roadName, string roadType, string suburb, string postCode, string projection)
 {
     WebUI2.SearchAddress.findAddressRequest inValue = new WebUI2.SearchAddress.findAddressRequest();
     inValue.houseNumber = houseNumber;
     inValue.roadName    = roadName;
     inValue.roadType    = roadType;
     inValue.suburb      = suburb;
     inValue.postCode    = postCode;
     inValue.projection  = projection;
     return(((WebUI2.SearchAddress.AddressSearch)(this)).findAddressAsync(inValue));
 }
Exemplo n.º 2
0
 public WebUI2.SearchAddress.AddressResult findAddress(string houseNumber, string roadName, string roadType, string suburb, string postCode, string projection)
 {
     WebUI2.SearchAddress.findAddressRequest inValue = new WebUI2.SearchAddress.findAddressRequest();
     inValue.houseNumber = houseNumber;
     inValue.roadName    = roadName;
     inValue.roadType    = roadType;
     inValue.suburb      = suburb;
     inValue.postCode    = postCode;
     inValue.projection  = projection;
     WebUI2.SearchAddress.findAddressResponse retVal = ((WebUI2.SearchAddress.AddressSearch)(this)).findAddress(inValue);
     return(retVal.findAddressReturn);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <WebUI2.SearchAddress.findAddressResponse> WebUI2.SearchAddress.AddressSearch.findAddressAsync(WebUI2.SearchAddress.findAddressRequest request)
 {
     return(base.Channel.findAddressAsync(request));
 }
Exemplo n.º 4
0
 WebUI2.SearchAddress.findAddressResponse WebUI2.SearchAddress.AddressSearch.findAddress(WebUI2.SearchAddress.findAddressRequest request)
 {
     return(base.Channel.findAddress(request));
 }