using NzbDrone.Core.Datastore; using NzbDrone.Core.Messaging.Events; using NzbDrone.Core.ThingiProvider; namespace NzbDrone.Core.Notifications { public interface INotificationRepository : IProviderRepository { } public class NotificationRepository : ProviderRepository, INotificationRepository { public NotificationRepository(IMainDatabase database, IEventAggregator eventAggregator) : base(database, eventAggregator) { } } }