Example #1
0
 public HandlerPipelineStepService(
     ILogger <IHandlerPipelineStepRepository> logger,
     IHandlerPipelineStepRepository handlerPipelineStepRepository,
     IApiHandlerPipelineStepRequestModelValidator handlerPipelineStepModelValidator,
     IBOLHandlerPipelineStepMapper bolhandlerPipelineStepMapper,
     IDALHandlerPipelineStepMapper dalhandlerPipelineStepMapper
     )
     : base(logger,
            handlerPipelineStepRepository,
            handlerPipelineStepModelValidator,
            bolhandlerPipelineStepMapper,
            dalhandlerPipelineStepMapper)
 {
 }
Example #2
0
 public AbstractHandlerPipelineStepService(
     ILogger logger,
     IHandlerPipelineStepRepository handlerPipelineStepRepository,
     IApiHandlerPipelineStepRequestModelValidator handlerPipelineStepModelValidator,
     IBOLHandlerPipelineStepMapper bolHandlerPipelineStepMapper,
     IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper)
     : base()
 {
     this.handlerPipelineStepRepository     = handlerPipelineStepRepository;
     this.handlerPipelineStepModelValidator = handlerPipelineStepModelValidator;
     this.bolHandlerPipelineStepMapper      = bolHandlerPipelineStepMapper;
     this.dalHandlerPipelineStepMapper      = dalHandlerPipelineStepMapper;
     this.logger = logger;
 }
        public HandlerPipelineStepService(
            ILogger <IHandlerPipelineStepService> logger,
            MediatR.IMediator mediator,
            IHandlerPipelineStepRepository handlerPipelineStepRepository,
            IApiHandlerPipelineStepServerRequestModelValidator handlerPipelineStepModelValidator,
            IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper)
            : base()
        {
            this.HandlerPipelineStepRepository     = handlerPipelineStepRepository;
            this.HandlerPipelineStepModelValidator = handlerPipelineStepModelValidator;
            this.DalHandlerPipelineStepMapper      = dalHandlerPipelineStepMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
 public ApiHandlerPipelineStepServerRequestModelValidator(IHandlerPipelineStepRepository handlerPipelineStepRepository)
 {
     this.HandlerPipelineStepRepository = handlerPipelineStepRepository;
 }
Example #5
0
 public ApiHandlerPipelineStepRequestModelValidator(IHandlerPipelineStepRepository handlerPipelineStepRepository)
     : base(handlerPipelineStepRepository)
 {
 }
Example #6
0
 public AbstractApiHandlerPipelineStepRequestModelValidator(IHandlerPipelineStepRepository handlerPipelineStepRepository)
 {
     this.handlerPipelineStepRepository = handlerPipelineStepRepository;
 }