예제 #1
0
 public SellBussiness(IProductAcessible productAcess,
                      IOrderAcessible orderAcess,
                      IDetailAcessible detailAcess,
                      ICRUD <Customer> customAcess)
 {
     this.productAcess = productAcess;
     this.orderAcess   = orderAcess;
     this.detailAcess  = detailAcess;
     this.customAcess  = customAcess;
 }
예제 #2
0
 public ProductManagerBussiness(IProductAcessible productAcess, ICRUD <Brand> brandAcess, ICRUD <Category> categoryAcess)
 {
     this.productAcess  = productAcess;
     this.categoryAcess = categoryAcess;
     this.brandAcess    = brandAcess;
 }