コード例 #1
0
 public GenresApiController(IGenreService genreService, INewRelicTransactionManager newRelicTransactionManager,
                            ILogFactory logFactory)
 {
     _genreService = genreService;
     _newRelicTransactionManager = newRelicTransactionManager;
     _logFactory = logFactory;
 }
コード例 #2
0
 public AlbumsApiController(IAlbumService albumService, INewRelicTransactionManager newRelicTransactionManager,
                            ILogFactory logFactory)
 {
     _albumService = albumService;
     _newRelicTransactionManager = newRelicTransactionManager;
     _logFactory = logFactory;
 }
コード例 #3
0
 public LastAlbumsApiController(ILastAlbumService lastAlbumService,
                                INewRelicTransactionManager newRelicTransactionManager, ILogFactory logFactory)
 {
     _lastAlbumService           = lastAlbumService;
     _newRelicTransactionManager = newRelicTransactionManager;
     _logFactory = logFactory;
 }
コード例 #4
0
 public AlbumService(IBoomkatFeedItemService boomkatBoomkatFeedItemService,
                     ISpotifyService spotifyService, ISbwrFeedItemService sbwrFeedItemService,
                     INewRelicTransactionManager newRelicTransactionManager)
 {
     _boomkatBoomkatFeedItemService = boomkatBoomkatFeedItemService;
     _spotifyService             = spotifyService;
     _sbwrFeedItemService        = sbwrFeedItemService;
     _newRelicTransactionManager = newRelicTransactionManager;
 }
コード例 #5
0
 public LastAlbumService(IBoomkatFeedItemService boomkatFeedItemService,
                         ISbwrFeedItemService sbwrFeedItemService, ISpotifyService spotifyService,
                         ISbwrConfiguration sbwrConfiguration, INewRelicTransactionManager newRelicTransactionManager)
 {
     _boomkatFeedItemService     = boomkatFeedItemService;
     _spotifyService             = spotifyService;
     _sbwrConfiguration          = sbwrConfiguration;
     _newRelicTransactionManager = newRelicTransactionManager;
     _sbwrFeedItemService        = sbwrFeedItemService;
 }