예제 #1
0
 public SalesController(SalesDataAccessDataLayer salesDal,
                        CustomerDataAccessDataLayer customerDal,
                        ProductDataAccessDataLayer productDal,
                        StoreDataAccessDataLayer storeDal)
 {
     this.salesDal    = salesDal;
     this.customerDal = customerDal;
     this.productDal  = productDal;
     this.storeDal    = storeDal;
 }
예제 #2
0
 public StoreController(StoreDataAccessDataLayer storomerDal)
 {
     this.storomerDal = storomerDal;
 }