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;
 }
Ejemplo n.º 2
0
 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;
 }