//更新 public bool EditEntity(T efstudet) { CurrentDal.EditEntity(efstudet); return(CurrentDBSession.SaveChangs()); }
//添加 public T AddEntity(T efstudet) { CurrentDal.AddEntity(efstudet); CurrentDBSession.SaveChangs(); return(efstudet); }
//删除 public bool DeleteEntity(T efstudet) { CurrentDal.DeleteEntity(efstudet); return(CurrentDBSession.SaveChangs()); }