Esempio n. 1
0
 public ImportService(ICsvReader reader, IBuyerService buyerService, IProductService productService, IMetaProductRepository metaProductRepository)
 {
     this.reader = reader;
     this.buyerService = buyerService;
     this.productService = productService;
     this.metaProductRepository = metaProductRepository;
 }
Esempio n. 2
0
 public ProductController(IProductRepository productRepo, IMetaProductRepository metaProductRepo, IProductService productService, ICanSave saver)
 {
     _productRepo = productRepo;
     _metaProductRepo = metaProductRepo;
     _productService = productService;
     this.saver = saver;
 }
Esempio n. 3
0
 public BuyerController(IBuyerRepository buyerRepo, IMetaProductRepository metaProductRepo, IBuyerService buyerService, ICanSave saver)
 {
     _buyerRepo = buyerRepo;
     _metaProductRepo = metaProductRepo;
     _buyerService = buyerService;
     this.saver = saver;
 }
Esempio n. 4
0
 public ExternalController(IAgencyService agencyService, IProductRepository productRepository, IExternalService externalService, IMatchingService matchingService, IMetaProductRepository metaProductRepository)
 {
     this.agencyService = agencyService;
     this.productRepository = productRepository;
     this.externalService = externalService;
     this.matchingService = matchingService;
     this.metaProductRepository = metaProductRepository;
 }
Esempio n. 5
0
 public MetaProductService(IMetaProductRepository metaProductRepository)
 {
     _metaProductRepository = metaProductRepository;
 }