mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
removed sqo.
This commit is contained in:
parent
7717e32729
commit
1a4f3fad25
64 changed files with 292 additions and 1323 deletions
|
@ -6,7 +6,7 @@ using ServiceStack.OrmLite;
|
|||
|
||||
namespace NzbDrone.Core.Tv
|
||||
{
|
||||
public interface ISeasonRepository : IBasicDb<Season>
|
||||
public interface ISeasonRepository : IBasicRepository<Season>
|
||||
{
|
||||
IList<int> GetSeasonNumbers(int seriesId);
|
||||
Season Get(int seriesId, int seasonNumber);
|
||||
|
@ -14,7 +14,7 @@ namespace NzbDrone.Core.Tv
|
|||
List<Season> GetSeasonBySeries(int seriesId);
|
||||
}
|
||||
|
||||
public class SeasonRepository : BasicDb<Season>, ISeasonRepository
|
||||
public class SeasonRepository : BasicRepository<Season>, ISeasonRepository
|
||||
{
|
||||
private readonly IDbConnection _database;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue