2013-03-24 05:16:00 +01:00
|
|
|
using System.Data;
|
2013-02-24 07:48:52 +01:00
|
|
|
using System.Linq;
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
|
|
{
|
|
|
|
public interface IConfigRepository : IBasicRepository<Config>
|
|
|
|
{
|
|
|
|
Config Get(string key);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public class ConfigRepository : BasicRepository<Config>, IConfigRepository
|
|
|
|
{
|
2013-03-24 05:16:00 +01:00
|
|
|
public ConfigRepository(IDbConnection database)
|
|
|
|
: base(database)
|
2013-02-24 07:48:52 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Config Get(string key)
|
|
|
|
{
|
2013-03-24 05:16:00 +01:00
|
|
|
return SingleOrDefault(c => c.Key == key);
|
2013-02-24 07:48:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|