public bool AddEntity(T Entity) { CurrentDAL.AddEntity(Entity); return(CurrentBbSession.SaveChanges()); }
public bool DeleteEntity(T Entity) { CurrentDAL.DeleteEntity(Entity); return(CurrentBbSession.SaveChanges()); }
public bool ModifyEntity(T Entity) { CurrentDAL.ModifyEntity(Entity); return(CurrentBbSession.SaveChanges()); }