Ejemplo n.º 1
0
 public ProductListPriceHistoryService(
     ILogger <IProductListPriceHistoryRepository> logger,
     IProductListPriceHistoryRepository productListPriceHistoryRepository,
     IApiProductListPriceHistoryRequestModelValidator productListPriceHistoryModelValidator,
     IBOLProductListPriceHistoryMapper bolproductListPriceHistoryMapper,
     IDALProductListPriceHistoryMapper dalproductListPriceHistoryMapper)
     : base(logger,
            productListPriceHistoryRepository,
            productListPriceHistoryModelValidator,
            bolproductListPriceHistoryMapper,
            dalproductListPriceHistoryMapper)
 {
 }
 public AbstractProductListPriceHistoryService(
     ILogger logger,
     IProductListPriceHistoryRepository productListPriceHistoryRepository,
     IApiProductListPriceHistoryRequestModelValidator productListPriceHistoryModelValidator,
     IBOLProductListPriceHistoryMapper bolProductListPriceHistoryMapper,
     IDALProductListPriceHistoryMapper dalProductListPriceHistoryMapper)
     : base()
 {
     this.ProductListPriceHistoryRepository     = productListPriceHistoryRepository;
     this.ProductListPriceHistoryModelValidator = productListPriceHistoryModelValidator;
     this.BolProductListPriceHistoryMapper      = bolProductListPriceHistoryMapper;
     this.DalProductListPriceHistoryMapper      = dalProductListPriceHistoryMapper;
     this.logger = logger;
 }