Exemple #1
0
 public bool Delete(int?id)
 {
     objProductCategoryDAL = new Product_Category_DAL(objProductCategoryProperty);
     return(objProductCategoryDAL.Delete(id));
 }
Exemple #2
0
 public bool Update()
 {
     objProductCategoryDAL = new Product_Category_DAL(objProductCategoryProperty);
     return(objProductCategoryDAL.Update());
 }
Exemple #3
0
 public DataTable GetById(int?id)
 {
     objProductCategoryDAL = new Product_Category_DAL(objProductCategoryProperty);
     return(objProductCategoryDAL.SelectById(id));
 }
Exemple #4
0
 public bool Insert()
 {
     objProductCategoryDAL = new Product_Category_DAL(objProductCategoryProperty);
     return(objProductCategoryDAL.Insert());
 }
Exemple #5
0
 public DataTable ViewAll()
 {
     objProductCategoryDAL = new Product_Category_DAL(objProductCategoryProperty);
     return(objProductCategoryDAL.SelectAll());
 }