예제 #1
0
 public ProductModelService(
     ILogger <IProductModelRepository> logger,
     IProductModelRepository productModelRepository,
     IApiProductModelRequestModelValidator productModelModelValidator,
     IBOLProductModelMapper bolproductModelMapper,
     IDALProductModelMapper dalproductModelMapper,
     IBOLProductMapper bolProductMapper,
     IDALProductMapper dalProductMapper,
     IBOLProductModelIllustrationMapper bolProductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalProductModelIllustrationMapper,
     IBOLProductModelProductDescriptionCultureMapper bolProductModelProductDescriptionCultureMapper,
     IDALProductModelProductDescriptionCultureMapper dalProductModelProductDescriptionCultureMapper
     )
     : base(logger,
            productModelRepository,
            productModelModelValidator,
            bolproductModelMapper,
            dalproductModelMapper,
            bolProductMapper,
            dalProductMapper,
            bolProductModelIllustrationMapper,
            dalProductModelIllustrationMapper,
            bolProductModelProductDescriptionCultureMapper,
            dalProductModelProductDescriptionCultureMapper)
 {
 }
 public AbstractProductModelService(
     ILogger logger,
     IProductModelRepository productModelRepository,
     IApiProductModelRequestModelValidator productModelModelValidator,
     IBOLProductModelMapper bolProductModelMapper,
     IDALProductModelMapper dalProductModelMapper,
     IBOLProductMapper bolProductMapper,
     IDALProductMapper dalProductMapper,
     IBOLProductModelIllustrationMapper bolProductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalProductModelIllustrationMapper,
     IBOLProductModelProductDescriptionCultureMapper bolProductModelProductDescriptionCultureMapper,
     IDALProductModelProductDescriptionCultureMapper dalProductModelProductDescriptionCultureMapper)
     : base()
 {
     this.productModelRepository            = productModelRepository;
     this.productModelModelValidator        = productModelModelValidator;
     this.bolProductModelMapper             = bolProductModelMapper;
     this.dalProductModelMapper             = dalProductModelMapper;
     this.bolProductMapper                  = bolProductMapper;
     this.dalProductMapper                  = dalProductMapper;
     this.bolProductModelIllustrationMapper = bolProductModelIllustrationMapper;
     this.dalProductModelIllustrationMapper = dalProductModelIllustrationMapper;
     this.bolProductModelProductDescriptionCultureMapper = bolProductModelProductDescriptionCultureMapper;
     this.dalProductModelProductDescriptionCultureMapper = dalProductModelProductDescriptionCultureMapper;
     this.logger = logger;
 }
예제 #3
0
 public ProductModelIllustrationService(
     ILogger <IProductModelIllustrationRepository> logger,
     IProductModelIllustrationRepository productModelIllustrationRepository,
     IApiProductModelIllustrationRequestModelValidator productModelIllustrationModelValidator,
     IBOLProductModelIllustrationMapper bolproductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalproductModelIllustrationMapper
     )
     : base(logger,
            productModelIllustrationRepository,
            productModelIllustrationModelValidator,
            bolproductModelIllustrationMapper,
            dalproductModelIllustrationMapper)
 {
 }
예제 #4
0
 public IllustrationService(
     ILogger <IIllustrationRepository> logger,
     IIllustrationRepository illustrationRepository,
     IApiIllustrationRequestModelValidator illustrationModelValidator,
     IBOLIllustrationMapper bolillustrationMapper,
     IDALIllustrationMapper dalillustrationMapper,
     IBOLProductModelIllustrationMapper bolProductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalProductModelIllustrationMapper
     )
     : base(logger,
            illustrationRepository,
            illustrationModelValidator,
            bolillustrationMapper,
            dalillustrationMapper,
            bolProductModelIllustrationMapper,
            dalProductModelIllustrationMapper)
 {
 }
 public AbstractIllustrationService(
     ILogger logger,
     IIllustrationRepository illustrationRepository,
     IApiIllustrationRequestModelValidator illustrationModelValidator,
     IBOLIllustrationMapper bolIllustrationMapper,
     IDALIllustrationMapper dalIllustrationMapper,
     IBOLProductModelIllustrationMapper bolProductModelIllustrationMapper,
     IDALProductModelIllustrationMapper dalProductModelIllustrationMapper)
     : base()
 {
     this.illustrationRepository            = illustrationRepository;
     this.illustrationModelValidator        = illustrationModelValidator;
     this.bolIllustrationMapper             = bolIllustrationMapper;
     this.dalIllustrationMapper             = dalIllustrationMapper;
     this.bolProductModelIllustrationMapper = bolProductModelIllustrationMapper;
     this.dalProductModelIllustrationMapper = dalProductModelIllustrationMapper;
     this.logger = logger;
 }