Ejemplo n.º 1
0
 public SalesController(SalesDataAccessDataLayer salesDal,
                        CustomerDataAccessDataLayer customerDal,
                        ProductDataAccessDataLayer productDal,
                        StoreDataAccessDataLayer storeDal)
 {
     this.salesDal    = salesDal;
     this.customerDal = customerDal;
     this.productDal  = productDal;
     this.storeDal    = storeDal;
 }
Ejemplo n.º 2
0
 public CustomerController(CustomerDataAccessDataLayer customerDal)
 {
     this.customerDal = customerDal;
 }