public AbstractOtherTransportController(
     ApiSettings settings,
     ILogger <AbstractOtherTransportController> logger,
     ITransactionCoordinator transactionCoordinator,
     IOtherTransportService otherTransportService,
     IApiOtherTransportModelMapper otherTransportModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.OtherTransportService     = otherTransportService;
     this.OtherTransportModelMapper = otherTransportModelMapper;
 }
 public OtherTransportController(
     ApiSettings settings,
     ILogger <OtherTransportController> logger,
     ITransactionCoordinator transactionCoordinator,
     IOtherTransportService otherTransportService,
     IApiOtherTransportModelMapper otherTransportModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            otherTransportService,
            otherTransportModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }