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