public WhenCreateCatalogExport(ICatalogExportFileProducer catalogExportFileProducer,
                                ICatalogExportStorage catalogExportStorage,
                                IProductsRepository productsRepository,
                                IRepository <Domain.Aggregates.CatalogExport> catalogExportsRepository,
                                IMapper mapper)
 {
     _catalogExportFileProducer = catalogExportFileProducer;
     _catalogExportStorage      = catalogExportStorage;
     _productsRepository        = productsRepository;
     _catalogExportsRepository  = catalogExportsRepository;
     _mapper = mapper;
 }
Exemplo n.º 2
0
 public WhenDeleteCatalogExport(ICatalogExportStorage catalogExportStorage, IRepository <CatalogExport> catalogExportsRepository)
 {
     _catalogExportStorage     = catalogExportStorage;
     _catalogExportsRepository = catalogExportsRepository;
 }