示例#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());
 }