Lidarr/src/NzbDrone.Core/Notifications/NotificationRepository.cs

19 lines
536 B
C#
Raw Normal View History

using NzbDrone.Core.Datastore;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.ThingiProvider;
2013-09-11 06:33:47 +00:00
2013-05-19 23:17:32 +00:00
namespace NzbDrone.Core.Notifications
{
public interface INotificationRepository : IProviderRepository<NotificationDefinition>
2013-05-19 23:17:32 +00:00
{
}
public class NotificationRepository : ProviderRepository<NotificationDefinition>, INotificationRepository
2013-05-19 23:17:32 +00:00
{
public NotificationRepository(IMainDatabase database, IEventAggregator eventAggregator)
: base(database, eventAggregator)
2013-05-19 23:17:32 +00:00
{
}
}
}