Radarr/src/NzbDrone.Core/Configuration/ConfigRepository.cs

27 lines
619 B
C#
Raw Normal View History

2013-02-24 06:48:52 +00:00
using System.Linq;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Messaging.Events;
2013-09-11 06:33:47 +00:00
2013-02-24 06:48:52 +00:00
namespace NzbDrone.Core.Configuration
{
public interface IConfigRepository : IBasicRepository<Config>
{
Config Get(string key);
}
public class ConfigRepository : BasicRepository<Config>, IConfigRepository
{
public ConfigRepository(IMainDatabase database, IEventAggregator eventAggregator)
: base(database, eventAggregator)
2013-02-24 06:48:52 +00:00
{
}
public Config Get(string key)
{
return Query.Where(c => c.Key == key).SingleOrDefault();
2013-02-24 06:48:52 +00:00
}
}
}