Example #1
0
 public ArticlePriceListOutService(
     IArticlePriceListOutRespository articlePriceListOutRespository,
     IArticleRespository articleRespository,
     ILogger <IArticlePriceListOutService> logger,
     IArticlePriceListOutMapper articlePriceListOutMapper)
 {
     _articlePriceListOutRespository = articlePriceListOutRespository;
     _articleRespository             = articleRespository;
     _logger = logger;
     _articlePriceListOutMapper = articlePriceListOutMapper;
 }
Example #2
0
 public ArticleRangeMapper(IArticleMapper articleMapper, IArticlePriceListInMapper articlepriceListInMapper, IArticlePriceListOutMapper articlepriceListOutMapper)
 {
     _articleMapper             = articleMapper;
     _articlepriceListInMapper  = articlepriceListInMapper;
     _articlepriceListOutMapper = articlepriceListOutMapper;
 }
Example #3
0
 public EditArticlePriceListOutCommandHandler(IArticlePriceListOutService articlePriceListOutService, IArticlePriceListOutMapper articlePriceListOutMapper, ILogger <IRequest> logger)
 {
     _articlePriceListOutService = articlePriceListOutService;
     _articlePriceListOutMapper  = articlePriceListOutMapper;
     _logger = logger;
 }
 public AddArticlePriceListOutCommandHandler(IArticlePriceListOutRespository articlePriceListOutRespository, IArticlePriceListOutMapper articlePriceListOutMapper, ILogger <IRequest> logger)
 {
     _articlePriceListOutRespository = articlePriceListOutRespository;
     _articlePriceListOutMapper      = articlePriceListOutMapper;
     _logger = logger;
 }