Ejemplo n.º 1
0
 public PriceComparisonJob(IProductService productService, IExternalProductService externalProductService, IMailService mailService, IPriceHistoryService priceHistoryService, IMessageService messageService)
 {
     _productService         = productService;
     _externalProductService = externalProductService;
     _priceHistoryService    = priceHistoryService;
     _mailService            = mailService;
     _messageService         = messageService;
 }
Ejemplo n.º 2
0
 public ExternalProductsController(IExternalProductService externalProductService)
 {
     _service = externalProductService;
 }
Ejemplo n.º 3
0
 public ProductsController(IProductService productService, IExternalProductService externalPproductService, IDialogService dialogService)
 {
     _productService          = productService;
     _dialogService           = dialogService;
     _externalPproductService = externalPproductService;
 }