Added more stubbed mothods and providers

This commit is contained in:
Keivan 2010-09-28 13:44:33 -07:00
commit bca2e0c6b1
7 changed files with 75 additions and 3 deletions

View file

@ -55,6 +55,12 @@ namespace NzbDrone.Core.Providers
return _sonioRepo.Single<Series>(s => s.TvdbId == tvdbId.ToString());
}
public IList<Season> GetSeasons(long tvdbId)
{
return _sonioRepo.Find<Season>(c => c.SeriesId == tvdbId);
}
public void SyncSeriesWithDisk()
{
foreach (string seriesFolder in _diskProvider.GetDirectories(_config.SeriesRoot))