You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/NzbDrone.Core/Tv/SeriesRepository.cs

49 lines
1.4 KiB

12 years ago
using System.Collections.Generic;
using System.Data;
using System.Linq;
12 years ago
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Tv
{
11 years ago
public interface ISeriesRepository : IBasicRepository<Series>
12 years ago
{
bool SeriesPathExists(string path);
List<Series> Search(string title);
Series GetByTitle(string cleanTitle);
12 years ago
Series FindByTvdbId(int tvdbId);
void SetSeriesType(int seriesId, SeriesTypes seriesTypes);
12 years ago
}
11 years ago
public class SeriesRepository : BasicRepository<Series>, ISeriesRepository
12 years ago
{
public SeriesRepository(IDatabase database)
: base(database)
12 years ago
{
}
public bool SeriesPathExists(string path)
{
return Query.Any(c => c.Path == path);
12 years ago
}
public List<Series> Search(string title)
{
return Query.Where(s => s.Title.Contains(title));
12 years ago
}
public Series GetByTitle(string cleanTitle)
12 years ago
{
return Query.SingleOrDefault(s => s.CleanTitle.Equals(cleanTitle));
12 years ago
}
12 years ago
public Series FindByTvdbId(int tvdbId)
{
return Query.SingleOrDefault(s => s.TvDbId.Equals(tvdbId));
12 years ago
}
public void SetSeriesType(int seriesId, SeriesTypes seriesType)
12 years ago
{
SetFields(new Series { Id = seriesId, SeriesType = seriesType }, s => s.SeriesType);
12 years ago
}
12 years ago
}
}