2013-03-25 04:46:51 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-02-23 04:37:23 +00:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
|
|
|
{
|
|
|
|
|
public interface INewznabRepository : IBasicRepository<NewznabDefinition>
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<NewznabDefinition> Enabled();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class NewznabRepository : BasicRepository<NewznabDefinition>, INewznabRepository
|
|
|
|
|
{
|
2013-03-25 04:46:51 +00:00
|
|
|
|
public NewznabRepository(IDatabase database)
|
|
|
|
|
: base(database)
|
2013-02-23 04:37:23 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<NewznabDefinition> Enabled()
|
|
|
|
|
{
|
2013-03-25 04:46:51 +00:00
|
|
|
|
return Queryable().Where(n => n.Enable);
|
2013-02-23 04:37:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|