Exemple #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)
 {
 }
Exemple #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;
 }