예제 #1
0
 public bool AddEntity(T Entity)
 {
     CurrentDAL.AddEntity(Entity);
     return(CurrentBbSession.SaveChanges());
 }
예제 #2
0
 public bool DeleteEntity(T Entity)
 {
     CurrentDAL.DeleteEntity(Entity);
     return(CurrentBbSession.SaveChanges());
 }
예제 #3
0
 public bool ModifyEntity(T Entity)
 {
     CurrentDAL.ModifyEntity(Entity);
     return(CurrentBbSession.SaveChanges());
 }