Ejemplo n.º 1
0
        public GetWildernessPropertiesResponse GetWildernessProperties([System.Xml.Serialization.XmlElementAttribute("GetWildernessProperties", Namespace = "http://www.wilderness-window.com/")] GetWildernessProperties GetWildernessProperties1)
        {
            object[] results = this.Invoke("GetWildernessProperties", new object[] {
                GetWildernessProperties1
            });

            return((GetWildernessPropertiesResponse)(results[0]));
        }
Ejemplo n.º 2
0
 /// <remarks/>
 public void GetWildernessPropertiesAsync(GetWildernessProperties GetWildernessProperties1, object userState)
 {
     if ((this.GetWildernessPropertiesOperationCompleted == null))
     {
         this.GetWildernessPropertiesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWildernessPropertiesOperationCompleted);
     }
     this.InvokeAsync("GetWildernessProperties", new object[] {
         GetWildernessProperties1
     }, this.GetWildernessPropertiesOperationCompleted, userState);
 }
Ejemplo n.º 3
0
        private static List <WildernessProperty> GetPropertyList()
        {
            GetWildernessProperties         Properties       = new GetWildernessProperties();
            GetWildernessPropertiesResponse PropertyResponse = api.GetWildernessProperties(Properties);

            List <WildernessProperty> ReturnList     = new List <WildernessProperty>();
            WildernessProperty        ReturnProperty = new WildernessProperty();

            foreach (var ResponseObject in PropertyResponse.Response.WildernessSuppliers_Response)
            {
                ReturnProperty.SupplierCode     = ResponseObject.SupplierCode;
                ReturnProperty.SupplierLocation = ResponseObject.SupplierLocation;
                ReturnProperty.SupplierName     = ResponseObject.SupplierName;
                ReturnProperty.Country          = ResponseObject.Country;

                ReturnList.Add(ReturnProperty);

                ReturnProperty = new WildernessProperty();
            }

            return(ReturnList);
        }
Ejemplo n.º 4
0
 /// <remarks/>
 public void GetWildernessPropertiesAsync(GetWildernessProperties GetWildernessProperties1)
 {
     this.GetWildernessPropertiesAsync(GetWildernessProperties1, null);
 }