コード例 #1
0
 public EventService(
     HTTPService http,
     StatusLocator serviceLocation)
 {
     _http           = http;
     _statusLocation = serviceLocation;
 }
コード例 #2
0
 public UserFriendlyServerExceptionMiddeware(
     RequestDelegate next,
     ServiceLocation serviceLocation,
     StatusLocator statusLocator,
     ILogger <UserFriendlyServerExceptionMiddeware> logger,
     EventService eventService,
     AppsContainer appsContainer)
 {
     _next            = next;
     _serviceLocation = serviceLocation;
     _statusLocator   = statusLocator;
     _logger          = logger;
     _eventService    = eventService;
     _appsContainer   = appsContainer;
 }