public AbstractPipelineStepService(
     ILogger logger,
     IPipelineStepRepository pipelineStepRepository,
     IApiPipelineStepRequestModelValidator pipelineStepModelValidator,
     IBOLPipelineStepMapper bolPipelineStepMapper,
     IDALPipelineStepMapper dalPipelineStepMapper,
     IBOLHandlerPipelineStepMapper bolHandlerPipelineStepMapper,
     IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper,
     IBOLOtherTransportMapper bolOtherTransportMapper,
     IDALOtherTransportMapper dalOtherTransportMapper,
     IBOLPipelineStepDestinationMapper bolPipelineStepDestinationMapper,
     IDALPipelineStepDestinationMapper dalPipelineStepDestinationMapper,
     IBOLPipelineStepNoteMapper bolPipelineStepNoteMapper,
     IDALPipelineStepNoteMapper dalPipelineStepNoteMapper,
     IBOLPipelineStepStepRequirementMapper bolPipelineStepStepRequirementMapper,
     IDALPipelineStepStepRequirementMapper dalPipelineStepStepRequirementMapper)
     : base()
 {
     this.pipelineStepRepository               = pipelineStepRepository;
     this.pipelineStepModelValidator           = pipelineStepModelValidator;
     this.bolPipelineStepMapper                = bolPipelineStepMapper;
     this.dalPipelineStepMapper                = dalPipelineStepMapper;
     this.bolHandlerPipelineStepMapper         = bolHandlerPipelineStepMapper;
     this.dalHandlerPipelineStepMapper         = dalHandlerPipelineStepMapper;
     this.bolOtherTransportMapper              = bolOtherTransportMapper;
     this.dalOtherTransportMapper              = dalOtherTransportMapper;
     this.bolPipelineStepDestinationMapper     = bolPipelineStepDestinationMapper;
     this.dalPipelineStepDestinationMapper     = dalPipelineStepDestinationMapper;
     this.bolPipelineStepNoteMapper            = bolPipelineStepNoteMapper;
     this.dalPipelineStepNoteMapper            = dalPipelineStepNoteMapper;
     this.bolPipelineStepStepRequirementMapper = bolPipelineStepStepRequirementMapper;
     this.dalPipelineStepStepRequirementMapper = dalPipelineStepStepRequirementMapper;
     this.logger = logger;
 }
Пример #2
0
 public HandlerService(
     ILogger <IHandlerRepository> logger,
     IHandlerRepository handlerRepository,
     IApiHandlerRequestModelValidator handlerModelValidator,
     IBOLHandlerMapper bolhandlerMapper,
     IDALHandlerMapper dalhandlerMapper,
     IBOLAirTransportMapper bolAirTransportMapper,
     IDALAirTransportMapper dalAirTransportMapper,
     IBOLHandlerPipelineStepMapper bolHandlerPipelineStepMapper,
     IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper,
     IBOLOtherTransportMapper bolOtherTransportMapper,
     IDALOtherTransportMapper dalOtherTransportMapper
     )
     : base(logger,
            handlerRepository,
            handlerModelValidator,
            bolhandlerMapper,
            dalhandlerMapper,
            bolAirTransportMapper,
            dalAirTransportMapper,
            bolHandlerPipelineStepMapper,
            dalHandlerPipelineStepMapper,
            bolOtherTransportMapper,
            dalOtherTransportMapper)
 {
 }
Пример #3
0
        public PipelineStepService(
            ILogger <IPipelineStepService> logger,
            MediatR.IMediator mediator,
            IPipelineStepRepository pipelineStepRepository,
            IApiPipelineStepServerRequestModelValidator pipelineStepModelValidator,
            IDALPipelineStepMapper dalPipelineStepMapper,
            IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper,
            IDALOtherTransportMapper dalOtherTransportMapper,
            IDALPipelineStepDestinationMapper dalPipelineStepDestinationMapper,
            IDALPipelineStepNoteMapper dalPipelineStepNoteMapper,
            IDALPipelineStepStepRequirementMapper dalPipelineStepStepRequirementMapper)
            : base()
        {
            this.PipelineStepRepository               = pipelineStepRepository;
            this.PipelineStepModelValidator           = pipelineStepModelValidator;
            this.DalPipelineStepMapper                = dalPipelineStepMapper;
            this.DalHandlerPipelineStepMapper         = dalHandlerPipelineStepMapper;
            this.DalOtherTransportMapper              = dalOtherTransportMapper;
            this.DalPipelineStepDestinationMapper     = dalPipelineStepDestinationMapper;
            this.DalPipelineStepNoteMapper            = dalPipelineStepNoteMapper;
            this.DalPipelineStepStepRequirementMapper = dalPipelineStepStepRequirementMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
Пример #4
0
 public AbstractHandlerService(
     ILogger logger,
     IHandlerRepository handlerRepository,
     IApiHandlerRequestModelValidator handlerModelValidator,
     IBOLHandlerMapper bolHandlerMapper,
     IDALHandlerMapper dalHandlerMapper,
     IBOLAirTransportMapper bolAirTransportMapper,
     IDALAirTransportMapper dalAirTransportMapper,
     IBOLHandlerPipelineStepMapper bolHandlerPipelineStepMapper,
     IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper,
     IBOLOtherTransportMapper bolOtherTransportMapper,
     IDALOtherTransportMapper dalOtherTransportMapper)
     : base()
 {
     this.handlerRepository            = handlerRepository;
     this.handlerModelValidator        = handlerModelValidator;
     this.bolHandlerMapper             = bolHandlerMapper;
     this.dalHandlerMapper             = dalHandlerMapper;
     this.bolAirTransportMapper        = bolAirTransportMapper;
     this.dalAirTransportMapper        = dalAirTransportMapper;
     this.bolHandlerPipelineStepMapper = bolHandlerPipelineStepMapper;
     this.dalHandlerPipelineStepMapper = dalHandlerPipelineStepMapper;
     this.bolOtherTransportMapper      = bolOtherTransportMapper;
     this.dalOtherTransportMapper      = dalOtherTransportMapper;
     this.logger = logger;
 }
Пример #5
0
 public PipelineStepService(
     ILogger <IPipelineStepRepository> logger,
     IPipelineStepRepository pipelineStepRepository,
     IApiPipelineStepRequestModelValidator pipelineStepModelValidator,
     IBOLPipelineStepMapper bolpipelineStepMapper,
     IDALPipelineStepMapper dalpipelineStepMapper,
     IBOLHandlerPipelineStepMapper bolHandlerPipelineStepMapper,
     IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper,
     IBOLOtherTransportMapper bolOtherTransportMapper,
     IDALOtherTransportMapper dalOtherTransportMapper,
     IBOLPipelineStepDestinationMapper bolPipelineStepDestinationMapper,
     IDALPipelineStepDestinationMapper dalPipelineStepDestinationMapper,
     IBOLPipelineStepNoteMapper bolPipelineStepNoteMapper,
     IDALPipelineStepNoteMapper dalPipelineStepNoteMapper,
     IBOLPipelineStepStepRequirementMapper bolPipelineStepStepRequirementMapper,
     IDALPipelineStepStepRequirementMapper dalPipelineStepStepRequirementMapper
     )
     : base(logger,
            pipelineStepRepository,
            pipelineStepModelValidator,
            bolpipelineStepMapper,
            dalpipelineStepMapper,
            bolHandlerPipelineStepMapper,
            dalHandlerPipelineStepMapper,
            bolOtherTransportMapper,
            dalOtherTransportMapper,
            bolPipelineStepDestinationMapper,
            dalPipelineStepDestinationMapper,
            bolPipelineStepNoteMapper,
            dalPipelineStepNoteMapper,
            bolPipelineStepStepRequirementMapper,
            dalPipelineStepStepRequirementMapper)
 {
 }
Пример #6
0
 public HandlerPipelineStepService(
     ILogger <IHandlerPipelineStepRepository> logger,
     IHandlerPipelineStepRepository handlerPipelineStepRepository,
     IApiHandlerPipelineStepRequestModelValidator handlerPipelineStepModelValidator,
     IBOLHandlerPipelineStepMapper bolhandlerPipelineStepMapper,
     IDALHandlerPipelineStepMapper dalhandlerPipelineStepMapper
     )
     : base(logger,
            handlerPipelineStepRepository,
            handlerPipelineStepModelValidator,
            bolhandlerPipelineStepMapper,
            dalhandlerPipelineStepMapper)
 {
 }
Пример #7
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;
        }