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