public bool Delete(int?id)
 {
     objCustomerTypeDAL = new CustomerType_DAL(objCustomerCategoryProperty);
     return(objCustomerTypeDAL.Delete(id));
 }
 public bool Insert()
 {
     objCustomerTypeDAL = new CustomerType_DAL(objCustomerCategoryProperty);
     return(objCustomerTypeDAL.Insert());
 }
 public bool Update()
 {
     objCustomerTypeDAL = new CustomerType_DAL(objCustomerCategoryProperty);
     return(objCustomerTypeDAL.Update());
 }
 public DataTable SelectById()
 {
     objCustomerTypeDAL = new CustomerType_DAL(objCustomerCategoryProperty);
     return(objCustomerTypeDAL.SelectById());
 }