public NotificationServiceDependencies(INotificationListViewModel notificationListViewModel, INotificationFactory notificationFactory)
 {
     NotificationListViewModel = notificationListViewModel;
     NotificationFactory = notificationFactory;
 }
Ejemplo n.º 2
0
 public NotificationService(INotificationServiceDependencies dependencies)
 {
     _notificationListViewModel = dependencies.NotificationListViewModel;
     _notificationFactory = dependencies.NotificationFactory;
 }
Ejemplo n.º 3
0
 public NotificationView(INotificationListViewModel notificationListViewModel)
 {
     DataContext = notificationListViewModel;
     InitializeComponent();
 }