Exemple #1
0
 public System.Threading.Tasks.Task <CategoriesApplication.CategoryService.SetCategoryImageResponse> SetCategoryImageAsync(int CategoryId, int Size, System.IO.Stream ImageStream)
 {
     CategoriesApplication.CategoryService.CategoryImage inValue = new CategoriesApplication.CategoryService.CategoryImage();
     inValue.CategoryId  = CategoryId;
     inValue.Size        = Size;
     inValue.ImageStream = ImageStream;
     return(((CategoriesApplication.CategoryService.ICategoryService)(this)).SetCategoryImageAsync(inValue));
 }
Exemple #2
0
 public void SetCategoryImage(int CategoryId, int Size, System.IO.Stream ImageStream)
 {
     CategoriesApplication.CategoryService.CategoryImage inValue = new CategoriesApplication.CategoryService.CategoryImage();
     inValue.CategoryId  = CategoryId;
     inValue.Size        = Size;
     inValue.ImageStream = ImageStream;
     CategoriesApplication.CategoryService.SetCategoryImageResponse retVal = ((CategoriesApplication.CategoryService.ICategoryService)(this)).SetCategoryImage(inValue);
 }
Exemple #3
0
 public void GetCategoryImage(ref int CategoryId, ref int Size, ref System.IO.Stream ImageStream)
 {
     CategoriesApplication.CategoryService.CategoryImage inValue = new CategoriesApplication.CategoryService.CategoryImage();
     inValue.CategoryId  = CategoryId;
     inValue.Size        = Size;
     inValue.ImageStream = ImageStream;
     CategoriesApplication.CategoryService.CategoryImage retVal = ((CategoriesApplication.CategoryService.ICategoryService)(this)).GetCategoryImage(inValue);
     CategoryId  = retVal.CategoryId;
     Size        = retVal.Size;
     ImageStream = retVal.ImageStream;
 }
Exemple #4
0
 System.Threading.Tasks.Task <CategoriesApplication.CategoryService.SetCategoryImageResponse> CategoriesApplication.CategoryService.ICategoryService.SetCategoryImageAsync(CategoriesApplication.CategoryService.CategoryImage request)
 {
     return(base.Channel.SetCategoryImageAsync(request));
 }
Exemple #5
0
 CategoriesApplication.CategoryService.SetCategoryImageResponse CategoriesApplication.CategoryService.ICategoryService.SetCategoryImage(CategoriesApplication.CategoryService.CategoryImage request)
 {
     return(base.Channel.SetCategoryImage(request));
 }