public VehicleJourneyAssignmentLoaderWorker(Service serviceHost, ILogger <VehicleJourneyAssignmentLoaderWorker> logger, IConfiguration config, IVehicleJourneyAssignmentCache vehicleJourneyAssignmentCache)
     : base(serviceHost, logger)
 {
     this.serviceHost = serviceHost;
     this.logger      = logger;
     this.config      = config;
     this.vehicleJourneyAssignmentCache = vehicleJourneyAssignmentCache;
 }
 public RpsUdpToJsonWorker(Service serviceHost, ILogger <RpsUdpToJsonWorker> logger, IConfiguration config, IVehicleJourneyAssignmentCache vehicleJourneyAssignmentCache, UdpConverter udpConverter)
     : base(serviceHost, logger)
 {
     this.serviceHost = serviceHost;
     this.logger      = logger;
     this.config      = config;
     this.vehicleJourneyAssignmentCache = vehicleJourneyAssignmentCache;
     this.udpConverter = udpConverter;
 }