2014-01-18 14:44:36 +03:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
|
|
{
|
|
|
|
public interface IQualityDefinitionRepository : IBasicRepository<QualityDefinition>
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public class QualityDefinitionRepository : BasicRepository<QualityDefinition>, IQualityDefinitionRepository
|
|
|
|
{
|
|
|
|
public QualityDefinitionRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
|
|
: base(database, eventAggregator)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-10-04 02:29:52 +03:00
|
|
|
|
2014-01-18 14:44:36 +03:00
|
|
|
}
|
|
|
|
}
|