2013-02-23 22:48:52 -08:00
|
|
|
using System.Linq;
|
2013-05-05 14:24:33 -07:00
|
|
|
using NzbDrone.Common.Messaging;
|
2013-02-23 22:48:52 -08: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-05 14:24:33 -07:00
|
|
|
public ConfigRepository(IDatabase database, IMessageAggregator messageAggregator)
|
|
|
|
: base(database, messageAggregator)
|
2013-02-23 22:48:52 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Config Get(string key)
|
|
|
|
{
|
2013-03-26 20:44:52 -07:00
|
|
|
return Query.SingleOrDefault(c => c.Key == key);
|
2013-02-23 22:48:52 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|