Exemplo n.º 1
0
 public ArticlePriceListInService(
     IArticlePriceListInRespository articlePriceListInRespository,
     IArticleRespository articleRespository,
     ILogger <IArticlePriceListInService> logger,
     IArticlePriceListInMapper articlePriceListInMapper)
 {
     _articlePriceListInRespository = articlePriceListInRespository;
     _articleRespository            = articleRespository;
     _logger = logger;
     _articlePriceListInMapper = articlePriceListInMapper;
 }
Exemplo n.º 2
0
 public AddArticlePriceListInCommandHandler(IArticlePriceListInRespository articlePriceListInRespository, IArticlePriceListInMapper articlePriceListInMapper, ILogger <IRequest> logger)
 {
     _articlePriceListInRespository = articlePriceListInRespository;
     _articlePriceListInMapper      = articlePriceListInMapper;
     _logger = logger;
 }