public AbstractProductModelIllustrationService(
     ILogger logger,
     IProductModelIllustrationRepository productModelIllustrationRepository,
     IApiProductModelIllustrationRequestModelValidator productModelIllustrationModelValidator,
     IBOLProductModelIllustrationMapper bolProductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalProductModelIllustrationMapper)
     : base()
 {
     this.productModelIllustrationRepository     = productModelIllustrationRepository;
     this.productModelIllustrationModelValidator = productModelIllustrationModelValidator;
     this.bolProductModelIllustrationMapper      = bolProductModelIllustrationMapper;
     this.dalProductModelIllustrationMapper      = dalProductModelIllustrationMapper;
     this.logger = logger;
 }
Exemplo n.º 2
0
 public ProductModelIllustrationService(
     ILogger <IProductModelIllustrationRepository> logger,
     IProductModelIllustrationRepository productModelIllustrationRepository,
     IApiProductModelIllustrationRequestModelValidator productModelIllustrationModelValidator,
     IBOLProductModelIllustrationMapper bolproductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalproductModelIllustrationMapper
     )
     : base(logger,
            productModelIllustrationRepository,
            productModelIllustrationModelValidator,
            bolproductModelIllustrationMapper,
            dalproductModelIllustrationMapper)
 {
 }