Ejemplo n.º 1
0
 public bool AddEntity(T Entity)
 {
     CurrentDAL.AddEntity(Entity);
     return(CurrentBbSession.SaveChanges());
 }
Ejemplo n.º 2
0
 public bool DeleteEntity(T Entity)
 {
     CurrentDAL.DeleteEntity(Entity);
     return(CurrentBbSession.SaveChanges());
 }
Ejemplo n.º 3
0
 public bool ModifyEntity(T Entity)
 {
     CurrentDAL.ModifyEntity(Entity);
     return(CurrentBbSession.SaveChanges());
 }