public bool DeleteAccount()
 {
     objfourthTierDAL = new fourthTier_DAL(objfourthTierProperty);
     return(objfourthTierDAL.DeleteAccounts());
 }
 public bool Update()
 {
     objfourthTierDAL = new fourthTier_DAL(objfourthTierProperty);
     return(objfourthTierDAL.Update());
 }
 public DataTable GetfourthTierById()
 {
     objfourthTierDAL = new fourthTier_DAL(objfourthTierProperty);
     return(objfourthTierDAL.SelectById());
 }
 public bool Insert()
 {
     objfourthTierDAL = new fourthTier_DAL(objfourthTierProperty);
     return(objfourthTierDAL.Insert());
 }
 public DataTable ViewAll()
 {
     objfourthTierDAL = new fourthTier_DAL(objfourthTierProperty);
     return(objfourthTierDAL.SelectAll());
 }