Lidarr/NzbDrone.Core/Indexers/Newznab/NewznabRepository.cs

24 lines
582 B
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
using System.Collections.Generic;
2013-02-23 04:37:23 +00:00
using NzbDrone.Core.Datastore;
2013-04-07 07:30:37 +00:00
namespace NzbDrone.Core.Indexers.Newznab
2013-02-23 04:37:23 +00:00
{
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
}
}
}