using System; using System.Data; using System.Linq; using NzbDrone.Core.Datastore; namespace NzbDrone.Core.Indexers { public interface IIndexerRepository : IBasicRepository { Indexer Find(Type type); } public class IndexerRepository : BasicRepository, IIndexerRepository { public IndexerRepository(IDatabase database) : base(database) { } public Indexer Find(Type type) { return Query.Single(i => i.Type == type.ToString()); } } }