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

28 lines
536 B
C#
Raw Normal View History

2013-03-24 05:16:00 +01:00
using System.Data;
2013-02-24 07:48:52 +01:00
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
{
2013-03-24 05:16:00 +01:00
public ConfigRepository(IDbConnection database)
: base(database)
2013-02-24 07:48:52 +01:00
{
}
public Config Get(string key)
{
2013-03-24 05:16:00 +01:00
return SingleOrDefault(c => c.Key == key);
2013-02-24 07:48:52 +01:00
}
}
}