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