Lidarr/NzbDrone.Core/Indexers/IndexerRepository.cs

25 lines
538 B
C#
Raw Normal View History

2013-02-21 07:07:34 +00:00
using System;
2013-03-24 04:16:00 +00:00
using System.Data;
2013-02-21 07:07:34 +00:00
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Indexers
{
public interface IIndexerRepository : IBasicRepository<Indexer>
{
Indexer Find(Type type);
}
public class IndexerRepository : BasicRepository<Indexer>, IIndexerRepository
{
2013-03-24 04:16:00 +00:00
public IndexerRepository(IDbConnection database)
: base(database)
2013-02-21 07:07:34 +00:00
{
}
public Indexer Find(Type type)
{
2013-03-24 04:16:00 +00:00
return Single(i => i.Type == type.ToString());
2013-02-21 07:07:34 +00:00
}
}
}