public List <Reporte> GetAllReporte(string conditions, string orders) { return(ReporteDao.GetAll(conditions, orders)); }
public List <Reporte> GetAllReporte(Expression <Func <Reporte, bool> > criteria) { return(ReporteDao.GetAll(criteria)); }
public List <Reporte> GetAllReporte(string orders) { return(ReporteDao.GetAll(orders)); }
public List <Reporte> GetAllReporte() { return(ReporteDao.GetAll()); }