2013-02-27 03:19:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-03-24 04:16:00 +00:00
|
|
|
|
using System.Data;
|
2013-02-27 03:19:22 +00: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-24 04:16:00 +00:00
|
|
|
|
public QualityProfileRepository(IDbConnection database)
|
2013-02-27 03:19:22 +00:00
|
|
|
|
: base(database)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|