public LastAlbumsApiController(ILastAlbumService lastAlbumService,
                                INewRelicTransactionManager newRelicTransactionManager, ILogFactory logFactory)
 {
     _lastAlbumService           = lastAlbumService;
     _newRelicTransactionManager = newRelicTransactionManager;
     _logFactory = logFactory;
 }
 public LastAlbumsServiceCacheProxy(ILastAlbumService lastFeedItemService,
                                    ISpotiKatCacheConfiguration cacheConfiguration,
                                    ICacheService cacheService)
     : base(cacheService)
 {
     _lastFeedItemService = lastFeedItemService;
     _cacheConfiguration  = cacheConfiguration;
 }