public List <Cpt> GetAllCpt(string conditions, string orders) { return(CptDao.GetAll(conditions, orders)); }
public List <Cpt> GetAllCpt(Expression <Func <Cpt, bool> > criteria) { return(CptDao.GetAll(criteria)); }
public List <Cpt> GetAllCpt(string orders) { return(CptDao.GetAll(orders)); }
public List <Cpt> GetAllCpt() { return(CptDao.GetAll()); }