public List<VwHistoria> GetAllVwHistoria(string conditions, string orders) { return VwHistoriaDao.GetAll(conditions, orders); }
public List<VwHistoria> GetAllVwHistoria(Expression<Func<VwHistoria, bool>> criteria) { return VwHistoriaDao.GetAll(criteria); }
public List<VwHistoria> GetAllVwHistoria(string orders) { return VwHistoriaDao.GetAll(orders); }
public List<VwHistoria> GetAllVwHistoria() { return VwHistoriaDao.GetAll(); }