2013-09-11 09:33:47 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-09-14 09:36:07 +03:00
|
|
|
using NzbDrone.Core.Messaging.Events;
|
2013-09-11 09:33:47 +03:00
|
|
|
|
2013-02-27 06:19:22 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
|
|
{
|
|
|
|
public interface IQualityProfileRepository : IBasicRepository<QualityProfile>
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public class QualityProfileRepository : BasicRepository<QualityProfile>, IQualityProfileRepository
|
|
|
|
{
|
2013-09-14 09:36:07 +03:00
|
|
|
public QualityProfileRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
|
|
: base(database, eventAggregator)
|
2013-02-27 06:19:22 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|