Composition fixes

This commit is contained in:
Stephan
2018-11-27 13:46:43 +01:00
parent 5b111f9629
commit c23c7749b4
54 changed files with 158 additions and 150 deletions

View File

@@ -15,12 +15,12 @@ namespace Umbraco.Web.Scheduling
private readonly HealthCheckCollection _healthChecks;
private readonly HealthCheckNotificationMethodCollection _notifications;
private readonly ILogger _logger;
private readonly ProfilingLogger _proflog;
private readonly IProfilingLogger _proflog;
public HealthCheckNotifier(IBackgroundTaskRunner<RecurringTaskBase> runner, int delayMilliseconds, int periodMilliseconds,
HealthCheckCollection healthChecks, HealthCheckNotificationMethodCollection notifications,
IRuntimeState runtimeState,
ILogger logger, ProfilingLogger proflog)
ILogger logger, IProfilingLogger proflog)
: base(runner, delayMilliseconds, periodMilliseconds)
{
_healthChecks = healthChecks;