1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Core/Configuration/ConfigRepository.cs

28 lines
544 B
C#
Raw Normal View History

2013-03-23 21:16:00 -07:00
using System.Data;
2013-02-23 22:48:52 -08: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 20:51:32 -07:00
public ConfigRepository(IDatabase database)
2013-03-23 21:16:00 -07:00
: base(database)
2013-02-23 22:48:52 -08:00
{
}
public Config Get(string key)
{
2013-03-24 20:51:32 -07:00
return Queryable().SingleOrDefault(c => c.Key == key);
2013-02-23 22:48:52 -08:00
}
}
}