public JobDasMismatchTimedHostedService( IJobDasMismatchService jobDasMismatchService, IJobDasMismatchHubEventBase hubEventBase, JobDasMismatchHub jobDasMismatchHub, ISerialisationHelperService serialisationHelperService, ILogger logger) : base("Job DasMismatch", logger, serialisationHelperService) { hubEventBase.ClientHeartbeatCallback += RegisterClient; _jobDasMismatchService = jobDasMismatchService; _jobDasMismatchHub = jobDasMismatchHub; _logger = logger; }
public JobDasMismatchHub(IJobDasMismatchHubEventBase eventBase, IHubContext <JobDasMismatchHub> hubContext, ILogger logger) : base(eventBase, hubContext, logger) { }