Exemplo n.º 1
0
		public List<VwHistoria> GetAllVwHistoria(string conditions, string orders)
		{
			return VwHistoriaDao.GetAll(conditions, orders);
		}
Exemplo n.º 2
0
		public List<VwHistoria> GetAllVwHistoria(Expression<Func<VwHistoria, bool>> criteria)
		{
			return VwHistoriaDao.GetAll(criteria);
		}
Exemplo n.º 3
0
		public List<VwHistoria> GetAllVwHistoria(string orders)
		{
			return VwHistoriaDao.GetAll(orders);
		}
Exemplo n.º 4
0
		public List<VwHistoria> GetAllVwHistoria()
		{
			return VwHistoriaDao.GetAll();
		}