Example #1
0
 public List <VwRequerimiento> GetAllVwRequerimiento(string conditions, string orders)
 {
     return(VwRequerimientoDao.GetAll(conditions, orders));
 }
Example #2
0
 public List <VwRequerimiento> GetAllVwRequerimiento(Expression <Func <VwRequerimiento, bool> > criteria)
 {
     return(VwRequerimientoDao.GetAll(criteria));
 }
Example #3
0
 public List <VwRequerimiento> GetAllVwRequerimiento(string orders)
 {
     return(VwRequerimientoDao.GetAll(orders));
 }
Example #4
0
 public List <VwRequerimiento> GetAllVwRequerimiento()
 {
     return(VwRequerimientoDao.GetAll());
 }