예제 #1
0
 public List <Periodo> GetAllPeriodo(string conditions, string orders)
 {
     return(PeriodoDao.GetAll(conditions, orders));
 }
예제 #2
0
 public List <Periodo> GetAllPeriodo(Expression <Func <Periodo, bool> > criteria)
 {
     return(PeriodoDao.GetAll(criteria));
 }
예제 #3
0
 public List <Periodo> GetAllPeriodo(string orders)
 {
     return(PeriodoDao.GetAll(orders));
 }
예제 #4
0
 public List <Periodo> GetAllPeriodo()
 {
     return(PeriodoDao.GetAll());
 }