Beispiel #1
0
 public ArticlePriceListOutService(
     IArticlePriceListOutRespository articlePriceListOutRespository,
     IArticleRespository articleRespository,
     ILogger <IArticlePriceListOutService> logger,
     IArticlePriceListOutMapper articlePriceListOutMapper)
 {
     _articlePriceListOutRespository = articlePriceListOutRespository;
     _articleRespository             = articleRespository;
     _logger = logger;
     _articlePriceListOutMapper = articlePriceListOutMapper;
 }
 public AddArticlePriceListOutCommandHandler(IArticlePriceListOutRespository articlePriceListOutRespository, IArticlePriceListOutMapper articlePriceListOutMapper, ILogger <IRequest> logger)
 {
     _articlePriceListOutRespository = articlePriceListOutRespository;
     _articlePriceListOutMapper      = articlePriceListOutMapper;
     _logger = logger;
 }