public List <VwStock> GetAllVwStock(string conditions, string orders) { return(VwStockDao.GetAll(conditions, orders)); }
public List <VwStock> GetAllVwStock(Expression <Func <VwStock, bool> > criteria) { return(VwStockDao.GetAll(criteria)); }
public List <VwStock> GetAllVwStock(string orders) { return(VwStockDao.GetAll(orders)); }
public List <VwStock> GetAllVwStock() { return(VwStockDao.GetAll()); }