public FastTrackController(
     IFastTrackService fastTrackService,
     ICacheKeyService cacheKeyService)
 {
     _fastTrackService = fastTrackService;
     _cacheKeyService  = cacheKeyService;
 }
 public CacheKeyService(
     ContentDbContext contentDbContext,
     StatisticsDbContext statisticsDbContext,
     IFastTrackService fastTrackService)
 {
     _contentDbContext    = contentDbContext;
     _statisticsDbContext = statisticsDbContext;
     _fastTrackService    = fastTrackService;
 }
コード例 #3
0
 public ContentService(IBlobStorageService publicBlobStorageService,
                       IBlobCacheService blobCacheService,
                       IFastTrackService fastTrackService,
                       IReleaseService releaseService,
                       IPublicationService publicationService)
 {
     _publicBlobStorageService = publicBlobStorageService;
     _blobCacheService         = blobCacheService;
     _fastTrackService         = fastTrackService;
     _releaseService           = releaseService;
     _publicationService       = publicationService;
 }
コード例 #4
0
 public ContentService(IFastTrackService fastTrackService,
                       IDownloadService downloadService,
                       IFileStorageService fileStorageService,
                       IMethodologyService methodologyService,
                       IReleaseService releaseService,
                       IPublicationService publicationService)
 {
     _fastTrackService   = fastTrackService;
     _fileStorageService = fileStorageService;
     _releaseService     = releaseService;
     _publicationService = publicationService;
     _downloadService    = downloadService;
     _methodologyService = methodologyService;
 }
コード例 #5
0
 public FastTrackController(IFastTrackService fastTrackService)
 {
     _fastTrackService = fastTrackService;
 }