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