예제 #1
0
 public Resultado <List <Entity> > GetAll()
 {
     return(dao.GetAll());
 }
예제 #2
0
파일: BaseBLL.cs 프로젝트: 475383382/My
 /// <summary>
 /// 获取所有的实体
 /// </summary>
 /// <typeparam name="T"></typeparam>
 /// <returns></returns>
 public List <T> GetAll()
 {
     return(_iBaseManager.GetAll());
 }