public MissingEpisodesRequestController( IMemoryCache memoryCache, IShowStore showStore = null) { _memoryCache = memoryCache; _showStore = showStore ?? new ShowStore(); }
public CreateShowRequestController( IShowStore showStore = null, IRefreshShowTask refreshShowTask = null) { _showStore = showStore ?? new ShowStore(); _refreshShowTask = refreshShowTask ?? new RefreshShowTask(); }
public GetPageOfShowsUseCase(IShowStore showStore) { _showStore = showStore; }
public GetNewMoviesUseCase(IShowStore showStore, ITvMazeClient tvMazeClient) { _showStore = showStore; _tvMazeClient = tvMazeClient; }
public ShowIdentifier(IShowStore showStore = null) { _showStore = showStore ?? new ShowStore(); }