1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 16:02:29 +01:00
Sonarr/NzbDrone.Core/Configuration/ConfigRepository.cs
2013-02-23 22:48:52 -08:00

27 lines
541 B
C#

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
{
public ConfigRepository(IObjectDatabase objectDatabase)
: base(objectDatabase)
{
}
public Config Get(string key)
{
return Queryable.SingleOrDefault(c => c.Key == key);
}
}
}