示例#1
0
 public List <Cpt> GetAllCpt(string conditions, string orders)
 {
     return(CptDao.GetAll(conditions, orders));
 }
示例#2
0
 public List <Cpt> GetAllCpt(Expression <Func <Cpt, bool> > criteria)
 {
     return(CptDao.GetAll(criteria));
 }
示例#3
0
 public List <Cpt> GetAllCpt(string orders)
 {
     return(CptDao.GetAll(orders));
 }
示例#4
0
 public List <Cpt> GetAllCpt()
 {
     return(CptDao.GetAll());
 }