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