Beispiel #1
0
 public GenreController(
     IGenreRetrievalService genreRetrievalService,
     IGenreCreationService genreCreationService,
     IGenreDeletionService genreDeletionService)
 {
     this.genreRetrievalService = genreRetrievalService;
     this.genreCreationService  = genreCreationService;
     this.genreDeletionService  = genreDeletionService;
 }
Beispiel #2
0
 public ArcController(
     IMapper mapper,
     IGenreRetrievalService genreRetrievalService,
     IArcCreationService arcCreationService,
     IArcDeletionService arcDeletionService,
     IArcEditingInfoService arcEditingInfoService,
     IArcEditingService arcEditingService,
     IMemoryCache cache,
     ICacheKeyHolderService <int> cacheKeyHolder)
 {
     this.mapper = mapper;
     this.genreRetrievalService = genreRetrievalService;
     this.arcCreationService    = arcCreationService;
     this.arcDeletionService    = arcDeletionService;
     this.arcEditingInfoService = arcEditingInfoService;
     this.arcEditingService     = arcEditingService;
     this.cache          = cache;
     this.cacheKeyHolder = cacheKeyHolder;
 }
 public SeriesController(
     IMapper mapper,
     IGenreRetrievalService genreRetrievalService,
     ISeriesCreationService seriesCreationService,
     ISeriesDeletionService seriesDeletionService,
     ISeriesEditingInfoService seriesEditingInfoService,
     ISeriesEditingService seriesEditingService,
     IMemoryCache cache,
     ICacheKeyHolderService <int> cacheKeyHolder)
 {
     this.mapper = mapper;
     this.genreRetrievalService    = genreRetrievalService;
     this.seriesCreationService    = seriesCreationService;
     this.seriesDeletionService    = seriesDeletionService;
     this.seriesEditingInfoService = seriesEditingInfoService;
     this.seriesEditingService     = seriesEditingService;
     this.cache          = cache;
     this.cacheKeyHolder = cacheKeyHolder;
 }
Beispiel #4
0
 public VolumeController(
     IMapper mapper,
     IGenreRetrievalService genreRetrievalService,
     IVolumeCreationService volumeCreationService,
     IVolumeDeletionService volumeDeletionService,
     IVolumeEditingInfoService volumeEditingInfoService,
     IVolumeEditingService volumeEditingService,
     IMemoryCache cache,
     ICacheKeyHolderService <int> cacheKeyHolder)
 {
     this.mapper = mapper;
     this.genreRetrievalService    = genreRetrievalService;
     this.volumeCreationService    = volumeCreationService;
     this.volumeDeletionService    = volumeDeletionService;
     this.volumeEditingInfoService = volumeEditingInfoService;
     this.volumeEditingService     = volumeEditingService;
     this.cache          = cache;
     this.cacheKeyHolder = cacheKeyHolder;
 }
Beispiel #5
0
 public IssueController(
     IMapper mapper,
     IGenreRetrievalService genreRetrievalService,
     IIssueCreationService issueCreationService,
     IIssueDetachmentService issueDetachmentService,
     IIssueDeletionService issueDeletionService,
     IIssueEditingInfoService issueEditingInfoService,
     IIssueEditingService issueEditingService,
     IMemoryCache cache,
     ICacheKeyHolderService <int> cacheKeyHolder)
 {
     this.mapper = mapper;
     this.genreRetrievalService   = genreRetrievalService;
     this.issueCreationService    = issueCreationService;
     this.issueDetachmentService  = issueDetachmentService;
     this.issueDeletionService    = issueDeletionService;
     this.issueEditingInfoService = issueEditingInfoService;
     this.issueEditingService     = issueEditingService;
     this.cache          = cache;
     this.cacheKeyHolder = cacheKeyHolder;
 }