public DownloadCountObjectMaterializedInterceptor(IDownloadCountService downloadCountService)
 {
     _downloadCountService = downloadCountService;
 }
 public DownloadCountEntityInterceptor(IDownloadCountService downloadCountService)
 {
     _downloadCountService = downloadCountService;
 }
 public DownloadCountObjectMaterializedInterceptor(IDownloadCountService downloadCountService)
 {
     _downloadCountService = downloadCountService;
 }
예제 #4
0
 public DownloadCountObjectMaterializedInterceptor(IDownloadCountService downloadCountService, ITelemetryService telemetryService)
 {
     _downloadCountService = downloadCountService ?? throw new ArgumentNullException(nameof(downloadCountService));
     _telemetryService     = telemetryService ?? throw new ArgumentNullException(nameof(telemetryService));
 }