Radarr/NzbDrone.Core/Indexers/NewznabRepository.cs

24 lines
577 B
C#
Raw Normal View History

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-27 03:44:52 +00:00
return Query.Where(n => n.Enable);
2013-02-23 04:37:23 +00:00
}
}
}