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