using System.Linq; using NzbDrone.Core.Repository; namespace NzbDrone.Core.Providers { public interface ISeriesProvider { IQueryable GetSeries(); Series GetSeries(int tvdbId); void SyncSeriesWithDisk(); } }