Exemple #1
0
 public HttpCallController(
     IHttpCallService httpCallService, IRequestResponseCoupleService requestResponseCoupleService, IFileUploadManager fileuploadManager)
 {
     _httpCallService     = httpCallService;
     _reqRescoupleService = requestResponseCoupleService;
     _fileuploadManager   = fileuploadManager;
 }
 public RequestResponseLoggingMiddleware(RequestDelegate next, IRequestResponseCoupleService requestResponseCoupleService,
                                         INotificationPublisher notificationPublisher, TethysConfig tethysConfig)
 {
     _next = next;
     _requestResponseCoupleService = requestResponseCoupleService;
     _notificationPublisher        = notificationPublisher;
     _webSocketSuffix = tethysConfig.WebSocketSuffix;
 }
Exemple #3
0
 public LogController(IRequestResponseCoupleService reqResCoupeService)
 {
     _reqResCoupleService = reqResCoupeService;
 }