2013-09-22 13:06:11 -07:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-09-13 23:36:07 -07:00
|
|
|
|
using NzbDrone.Core.Messaging.Events;
|
2013-09-22 13:06:11 -07:00
|
|
|
|
using NzbDrone.Core.ThingiProvider;
|
2013-09-10 23:33:47 -07:00
|
|
|
|
|
2013-02-20 23:07:34 -08:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
|
|
|
{
|
2013-09-22 13:06:11 -07:00
|
|
|
|
public interface IIndexerRepository : IProviderRepository<IndexerDefinition>
|
2013-02-20 23:07:34 -08:00
|
|
|
|
{
|
2013-09-22 13:06:11 -07:00
|
|
|
|
|
2013-02-20 23:07:34 -08:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-22 13:06:11 -07:00
|
|
|
|
public class IndexerRepository : ProviderRepository<IndexerDefinition>, IIndexerRepository
|
2013-02-20 23:07:34 -08:00
|
|
|
|
{
|
2013-09-13 23:36:07 -07:00
|
|
|
|
public IndexerRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
|
|
|
: base(database, eventAggregator)
|
2013-02-20 23:07:34 -08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|