mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
31 lines
857 B
C#
31 lines
857 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
namespace NzbDrone.Core.Applications
|
|
{
|
|
public interface IAppIndexerMapRepository : IBasicRepository<AppIndexerMap>
|
|
{
|
|
List<AppIndexerMap> GetMappingsForApp(int appId);
|
|
void DeleteAllForApp(int appId);
|
|
}
|
|
|
|
public class AppIndexerMapRepository : BasicRepository<AppIndexerMap>, IAppIndexerMapRepository
|
|
{
|
|
public AppIndexerMapRepository(IMainDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
|
|
public void DeleteAllForApp(int appId)
|
|
{
|
|
Delete(x => x.AppId == appId);
|
|
}
|
|
|
|
public List<AppIndexerMap> GetMappingsForApp(int appId)
|
|
{
|
|
return Query(x => x.AppId == appId);
|
|
}
|
|
}
|
|
}
|