mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
30 lines
640 B
C#
30 lines
640 B
C#
using System.Linq;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
|
|
namespace NzbDrone.Core.Configuration
|
|
{
|
|
public interface IConfigRepository : IBasicRepository<Config>
|
|
{
|
|
Config Get(string key);
|
|
|
|
}
|
|
|
|
public class ConfigRepository : BasicRepository<Config>, IConfigRepository
|
|
{
|
|
public ConfigRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
|
|
|
|
public Config Get(string key)
|
|
{
|
|
return Query.SingleOrDefault(c => c.Key == key);
|
|
}
|
|
|
|
|
|
}
|
|
} |