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;
 }
Exemple #2
0
 public ProductModelIllustrationService(
     ILogger <IProductModelIllustrationRepository> logger,
     IProductModelIllustrationRepository productModelIllustrationRepository,
     IApiProductModelIllustrationRequestModelValidator productModelIllustrationModelValidator,
     IBOLProductModelIllustrationMapper bolproductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalproductModelIllustrationMapper
     )
     : base(logger,
            productModelIllustrationRepository,
            productModelIllustrationModelValidator,
            bolproductModelIllustrationMapper,
            dalproductModelIllustrationMapper)
 {
 }
 public ApiProductModelIllustrationRequestModelValidator(IProductModelIllustrationRepository productModelIllustrationRepository)
     : base(productModelIllustrationRepository)
 {
 }
Exemple #4
0
 public AbstractApiProductModelIllustrationRequestModelValidator(IProductModelIllustrationRepository productModelIllustrationRepository)
 {
     this.productModelIllustrationRepository = productModelIllustrationRepository;
 }