예제 #1
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;
 }