예제 #1
0
 public List <VwStock> GetAllVwStock(string conditions, string orders)
 {
     return(VwStockDao.GetAll(conditions, orders));
 }
예제 #2
0
 public List <VwStock> GetAllVwStock(Expression <Func <VwStock, bool> > criteria)
 {
     return(VwStockDao.GetAll(criteria));
 }
예제 #3
0
 public List <VwStock> GetAllVwStock(string orders)
 {
     return(VwStockDao.GetAll(orders));
 }
예제 #4
0
 public List <VwStock> GetAllVwStock()
 {
     return(VwStockDao.GetAll());
 }