Exemple #1
0
 public OfferController(IOfferService offerService, ICustomerService customerService, IProductService productService, IOfferItemService offerItemService)
 {
     this.offerService     = offerService;
     this.productService   = productService;
     this.customerService  = customerService;
     this.offerItemService = offerItemService;
 }
Exemple #2
0
 public OfferItemController(IOfferItemService service)
 {
     _service = service;
 }