Ability to manually add a show has been added.

UI cleanup for adding series (new, existing and manual).
This commit is contained in:
Mark McDowall 2011-03-17 00:40:23 -07:00
commit 636f352599
24 changed files with 767 additions and 137 deletions

View file

@ -14,13 +14,15 @@ namespace NzbDrone.Core.Providers
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly IRepository _sonicRepo;
private readonly IConfigProvider _configProvider;
public IndexerProvider(IRepository sonicRepo)
public IndexerProvider(IRepository sonicRepo, IConfigProvider configProvider)
{
_sonicRepo = sonicRepo;
_configProvider = configProvider;
}
#region IIndexerProvider
#region IIndexerProvider Members
public List<Indexer> AllIndexers()
{