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