Radarr/src/NzbDrone.Core/RootFolders/RootFolderRepository.cs

27 lines
609 B
C#
Raw Normal View History

2013-11-13 20:08:37 +00:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Messaging.Events;
namespace NzbDrone.Core.RootFolders
{
public interface IRootFolderRepository : IBasicRepository<RootFolder>
{
}
public class RootFolderRepository : BasicRepository<RootFolder>, IRootFolderRepository
{
public RootFolderRepository(IMainDatabase database, IEventAggregator eventAggregator)
2013-11-13 20:08:37 +00:00
: base(database, eventAggregator)
{
}
protected override bool PublishModelEvents
{
get
{
return true;
}
}
}
}