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