2013-05-05 21:24:33 +00:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-27 03:19:22 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
|
|
|
{
|
|
|
|
|
public interface IQualityProfileRepository : IBasicRepository<QualityProfile>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class QualityProfileRepository : BasicRepository<QualityProfile>, IQualityProfileRepository
|
|
|
|
|
{
|
2013-05-05 21:24:33 +00:00
|
|
|
|
public QualityProfileRepository(IDatabase database, IMessageAggregator messageAggregator)
|
|
|
|
|
: base(database, messageAggregator)
|
2013-02-27 03:19:22 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|