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