Example #1
0
 public static bool DeleteProductCategory(ProductCategory_DTO category)
 {
     return(ProductCategory_DAL.DeleteProductCategory(category));
 }
Example #2
0
 public static bool InsertProductCategory(ProductCategory_DTO category)
 {
     return(ProductCategory_DAL.InsertProductCategory(category));
 }
Example #3
0
 public static bool UpdateProductCategory(ProductCategory_DTO category)
 {
     return(ProductCategory_DAL.UpdateProductCategory(category));
 }
Example #4
0
 public static List <ProductCategory_DTO> LoadProductCategory()
 {
     return(ProductCategory_DAL.LoadProductCategory());
 }