Removed INotificationProvider

This commit is contained in:
Mark McDowall 2011-04-08 16:48:47 -07:00
parent 4426072232
commit bd0a7a58dd
7 changed files with 7 additions and 30 deletions

View file

@ -9,11 +9,11 @@ namespace NzbDrone.Web.Controllers
{
public class NotificationController : Controller
{
private readonly INotificationProvider _notifications;
private readonly NotificationProvider _notifications;
//
// GET: /Notification/
public NotificationController(INotificationProvider notificationProvider)
public NotificationController(NotificationProvider notificationProvider)
{
_notifications = notificationProvider;
}