/// <remarks/>
 public void GetBrandsAsync(TInputBrand Value) {
     this.GetBrandsAsync(Value, null);
 }
 /// <remarks/>
 public void GetBrandsAsync(TInputBrand Value, object userState) {
     if ((this.GetBrandsOperationCompleted == null)) {
         this.GetBrandsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetBrandsOperationCompleted);
     }
     this.InvokeAsync("GetBrands", new object[] {
                 Value}, this.GetBrandsOperationCompleted, userState);
 }
 public string GetBrands(TInputBrand Value) {
     object[] results = this.Invoke("GetBrands", new object[] {
                 Value});
     return ((string)(results[0]));
 }