simplified quality fixed some broken tests

This commit is contained in:
Keivan
2011-02-03 11:47:51 -08:00
parent 764f67f8e8
commit ca27c75df5
10 changed files with 47 additions and 89 deletions

View File

@@ -8,9 +8,9 @@ namespace NzbDrone.Core.Providers
{
public interface IQualityProvider
{
void AddProfile(QualityProfile profile, List<AllowedQuality> allowedQualities);
void UpdateProfile(QualityProfile profile, List<AllowedQuality> allowedQualities);
void RemoveProfile(int profileId);
List<QualityProfile> GetProfiles();
void Add(QualityProfile profile);
void Update(QualityProfile profile);
void Delete(int profileId);
List<QualityProfile> GetAllProfiles();
}
}