2013-10-12 21:44:40 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-09-14 09:36:07 +03:00
|
|
|
using NzbDrone.Core.Messaging.Events;
|
2013-10-12 21:44:40 +03:00
|
|
|
using NzbDrone.Core.ThingiProvider;
|
2013-09-11 09:33:47 +03:00
|
|
|
|
2013-05-20 02:17:32 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
|
|
{
|
2013-10-12 21:44:40 +03:00
|
|
|
public interface INotificationRepository : IProviderRepository<NotificationDefinition>
|
2013-05-20 02:17:32 +03:00
|
|
|
{
|
2013-10-12 21:44:40 +03:00
|
|
|
|
2013-05-20 02:17:32 +03:00
|
|
|
}
|
|
|
|
|
2013-10-12 21:44:40 +03:00
|
|
|
public class NotificationRepository : ProviderRepository<NotificationDefinition>, INotificationRepository
|
2013-05-20 02:17:32 +03:00
|
|
|
{
|
2013-09-14 09:36:07 +03:00
|
|
|
public NotificationRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
|
|
: base(database, eventAggregator)
|
2013-05-20 02:17:32 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|