Пример #1
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)
 {
 }
 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;
 }
Пример #3
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;
 }
Пример #4
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;
        }
Пример #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 OtherTransportService(
     ILogger <IOtherTransportRepository> logger,
     IOtherTransportRepository otherTransportRepository,
     IApiOtherTransportRequestModelValidator otherTransportModelValidator,
     IBOLOtherTransportMapper bolotherTransportMapper,
     IDALOtherTransportMapper dalotherTransportMapper
     )
     : base(logger,
            otherTransportRepository,
            otherTransportModelValidator,
            bolotherTransportMapper,
            dalotherTransportMapper)
 {
 }
 public AbstractOtherTransportService(
     ILogger logger,
     IOtherTransportRepository otherTransportRepository,
     IApiOtherTransportRequestModelValidator otherTransportModelValidator,
     IBOLOtherTransportMapper bolOtherTransportMapper,
     IDALOtherTransportMapper dalOtherTransportMapper)
     : base()
 {
     this.otherTransportRepository     = otherTransportRepository;
     this.otherTransportModelValidator = otherTransportModelValidator;
     this.bolOtherTransportMapper      = bolOtherTransportMapper;
     this.dalOtherTransportMapper      = dalOtherTransportMapper;
     this.logger = logger;
 }
Пример #8
0
        public OtherTransportService(
            ILogger <IOtherTransportService> logger,
            MediatR.IMediator mediator,
            IOtherTransportRepository otherTransportRepository,
            IApiOtherTransportServerRequestModelValidator otherTransportModelValidator,
            IDALOtherTransportMapper dalOtherTransportMapper)
            : base()
        {
            this.OtherTransportRepository     = otherTransportRepository;
            this.OtherTransportModelValidator = otherTransportModelValidator;
            this.DalOtherTransportMapper      = dalOtherTransportMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
Пример #9
0
        public HandlerService(
            ILogger <IHandlerService> logger,
            MediatR.IMediator mediator,
            IHandlerRepository handlerRepository,
            IApiHandlerServerRequestModelValidator handlerModelValidator,
            IDALHandlerMapper dalHandlerMapper,
            IDALAirTransportMapper dalAirTransportMapper,
            IDALHandlerPipelineStepMapper dalHandlerPipelineStepMapper,
            IDALOtherTransportMapper dalOtherTransportMapper)
            : base()
        {
            this.HandlerRepository            = handlerRepository;
            this.HandlerModelValidator        = handlerModelValidator;
            this.DalHandlerMapper             = dalHandlerMapper;
            this.DalAirTransportMapper        = dalAirTransportMapper;
            this.DalHandlerPipelineStepMapper = dalHandlerPipelineStepMapper;
            this.DalOtherTransportMapper      = dalOtherTransportMapper;
            this.logger = logger;

            this.mediator = mediator;
        }