public FailuresController(ITelemetryRetrievalService telemetryRetrievalService, ICustomTelemetryService customTelemetryService, IAuthenticationService authenticationService, ICookie cookie, ICookieManager cookieManager) { this.customTelemetryService = customTelemetryService; this.telemetryRetrievalService = telemetryRetrievalService; this.authenticationService = authenticationService; this.cookie = cookie; this.cookieManager = cookieManager; }
public HomeController(ICustomTelemetryService customTelemetryService, ITelemetryRetrievalService telemetryRetrievalService) { this.customTelemetryService = customTelemetryService; this.telemetryRetrievalService = telemetryRetrievalService; }
public CollectController(ICustomTelemetryService telemetryService, IHubContext <TelemetryHub, IJavascriptClient> telemetryHubContext, ITelemetryRetrievalService telemetryRetrievalService) { this.customTelemetryService = telemetryService; this.telemetryHubContext = telemetryHubContext; this.telemetryRetrievalService = telemetryRetrievalService; }