Example #1
0
 public UserController(
     IUserNotificationsStore <UserNotification> userNotificationStore,
     IContextFacade contextFacade)
 {
     _userNotificationStore = userNotificationStore;
     _contextFacade         = contextFacade;
 }
Example #2
0
 public UserNotificationsManager(
     IUserNotificationsStore <UserNotification> userNotificationsStore,
     IBroker broker)
 {
     _userNotificationsStore = userNotificationsStore;
     _broker = broker;
 }
Example #3
0
 public UserController(
     IUrlHelperFactory urlHelperFactory,
     IContextFacade contextFacade,
     IUserNotificationsStore <UserNotification> userNotificationStore)
 {
     _contextFacade         = contextFacade;
     _userNotificationStore = userNotificationStore;
 }