2013-02-27 06:19:22 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2013-03-24 07:16:00 +03:00
|
|
|
using System.Data;
|
2013-02-27 06:19:22 +03:00
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
|
|
{
|
|
|
|
public interface IQualityProfileRepository : IBasicRepository<QualityProfile>
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public class QualityProfileRepository : BasicRepository<QualityProfile>, IQualityProfileRepository
|
|
|
|
{
|
2013-03-25 06:51:32 +03:00
|
|
|
public QualityProfileRepository(IDatabase database)
|
2013-02-27 06:19:22 +03:00
|
|
|
: base(database)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|