1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Configuration/ConfigRepository.cs

28 lines
609 B
C#
Raw Normal View History

2013-02-24 09:48:52 +03:00
using System.Linq;
2013-05-06 00:24:33 +03:00
using NzbDrone.Common.Messaging;
2013-02-24 09:48:52 +03:00
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Configuration
{
public interface IConfigRepository : IBasicRepository<Config>
{
Config Get(string key);
}
public class ConfigRepository : BasicRepository<Config>, IConfigRepository
{
2013-05-06 00:24:33 +03:00
public ConfigRepository(IDatabase database, IMessageAggregator messageAggregator)
: base(database, messageAggregator)
2013-02-24 09:48:52 +03:00
{
}
public Config Get(string key)
{
2013-03-27 06:44:52 +03:00
return Query.SingleOrDefault(c => c.Key == key);
2013-02-24 09:48:52 +03:00
}
}
}