1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Configuration/ConfigRepository.cs

28 lines
544 B
C#
Raw Normal View History

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-25 04:51:32 +01:00
public ConfigRepository(IDatabase database)
2013-03-24 05:16:00 +01:00
: base(database)
2013-02-24 07:48:52 +01:00
{
}
public Config Get(string key)
{
2013-03-25 04:51:32 +01:00
return Queryable().SingleOrDefault(c => c.Key == key);
2013-02-24 07:48:52 +01:00
}
}
}