Esempio n. 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)
 {
 }
Esempio n. 2
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;
 }
Esempio n. 3
0
 public AirTransportService(
     ILogger <IAirTransportRepository> logger,
     IAirTransportRepository airTransportRepository,
     IApiAirTransportRequestModelValidator airTransportModelValidator,
     IBOLAirTransportMapper bolairTransportMapper,
     IDALAirTransportMapper dalairTransportMapper)
     : base(logger,
            airTransportRepository,
            airTransportModelValidator,
            bolairTransportMapper,
            dalairTransportMapper)
 {
 }
 public AbstractAirTransportService(
     ILogger logger,
     IAirTransportRepository airTransportRepository,
     IApiAirTransportRequestModelValidator airTransportModelValidator,
     IBOLAirTransportMapper bolAirTransportMapper,
     IDALAirTransportMapper dalAirTransportMapper)
     : base()
 {
     this.airTransportRepository     = airTransportRepository;
     this.airTransportModelValidator = airTransportModelValidator;
     this.bolAirTransportMapper      = bolAirTransportMapper;
     this.dalAirTransportMapper      = dalAirTransportMapper;
     this.logger = logger;
 }
Esempio n. 5
0
        public AirTransportService(
            ILogger <IAirTransportService> logger,
            MediatR.IMediator mediator,
            IAirTransportRepository airTransportRepository,
            IApiAirTransportServerRequestModelValidator airTransportModelValidator,
            IDALAirTransportMapper dalAirTransportMapper)
            : base()
        {
            this.AirTransportRepository     = airTransportRepository;
            this.AirTransportModelValidator = airTransportModelValidator;
            this.DalAirTransportMapper      = dalAirTransportMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
Esempio n. 6
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;
        }