1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-01 00:45:18 +02:00
Files
Sonarr/NzbDrone.Core/DataAugmentation/Scene/SceneMappingRepository.cs

30 lines
815 B
C#
Raw Normal View History

2013-03-02 10:25:39 -08:00
using System.Linq;
using NzbDrone.Core.Datastore;
2013-03-31 19:43:58 -07:00
namespace NzbDrone.Core.DataAugmentation.Scene
2013-03-02 10:25:39 -08:00
{
public interface ISceneMappingRepository : IBasicRepository<SceneMapping>
{
SceneMapping FindByTvdbId(int tvdbId);
SceneMapping FindByCleanTitle(string cleanTitle);
}
public class SceneMappingRepository : BasicRepository<SceneMapping>, ISceneMappingRepository
{
2013-03-24 20:51:32 -07:00
public SceneMappingRepository(IDatabase database)
2013-03-23 21:16:00 -07:00
: base(database)
2013-03-02 10:25:39 -08:00
{
}
public SceneMapping FindByTvdbId(int tvdbId)
{
2013-03-26 20:44:52 -07:00
return Query.SingleOrDefault(c => c.TvdbId == tvdbId);
2013-03-02 10:25:39 -08:00
}
public SceneMapping FindByCleanTitle(string cleanTitle)
{
2013-03-26 20:44:52 -07:00
return Query.SingleOrDefault(c => c.CleanTitle == cleanTitle);
2013-03-02 10:25:39 -08:00
}
}
}