Ejemplo n.º 1
0
 public ArticlePriceListInService(
     IArticlePriceListInRespository articlePriceListInRespository,
     IArticleRespository articleRespository,
     ILogger <IArticlePriceListInService> logger,
     IArticlePriceListInMapper articlePriceListInMapper)
 {
     _articlePriceListInRespository = articlePriceListInRespository;
     _articleRespository            = articleRespository;
     _logger = logger;
     _articlePriceListInMapper = articlePriceListInMapper;
 }
Ejemplo n.º 2
0
 public DelteArticlePriceListInCommandHandler(IArticlePriceListInService articlePriceListInService, IArticlePriceListInMapper articlePriceListInMapper, ILogger <IRequest> logger)
 {
     _articlePriceListInService = articlePriceListInService;
     _articlePriceListInMapper  = articlePriceListInMapper;
     _logger = logger;
 }
Ejemplo n.º 3
0
 public ArticleRangeMapper(IArticleMapper articleMapper, IArticlePriceListInMapper articlepriceListInMapper, IArticlePriceListOutMapper articlepriceListOutMapper)
 {
     _articleMapper             = articleMapper;
     _articlepriceListInMapper  = articlepriceListInMapper;
     _articlepriceListOutMapper = articlepriceListOutMapper;
 }
Ejemplo n.º 4
0
 public AddArticlePriceListInCommandHandler(IArticlePriceListInRespository articlePriceListInRespository, IArticlePriceListInMapper articlePriceListInMapper, ILogger <IRequest> logger)
 {
     _articlePriceListInRespository = articlePriceListInRespository;
     _articlePriceListInMapper      = articlePriceListInMapper;
     _logger = logger;
 }