public IList <Ejercicio> ObtenerTodos()
 {
     return(oEjercicioDao.GetAll());
 }
Example #2
0
 public List <Ejercicio> GetAllEjercicio(string conditions, string orders)
 {
     return(EjercicioDao.GetAll(conditions, orders));
 }
Example #3
0
 public List <Ejercicio> GetAllEjercicio(Expression <Func <Ejercicio, bool> > criteria)
 {
     return(EjercicioDao.GetAll(criteria));
 }
Example #4
0
 public List <Ejercicio> GetAllEjercicio(string orders)
 {
     return(EjercicioDao.GetAll(orders));
 }
Example #5
0
 public List <Ejercicio> GetAllEjercicio()
 {
     return(EjercicioDao.GetAll());
 }