public ValueController(
     IToastManager messageManager,
     IHistoryManager historyTestManager,
     ISensorManager sensorManager,
     IActionService actionService,
     IInvSensorNotificationManager notificationManager,
     UserManager <AppUser> userManager,
     IEmailSender emailSender)
 {
     _historyManager      = historyTestManager;
     _actionService       = actionService;
     _toastManager        = messageManager;
     _sensorManager       = sensorManager;
     _notificationManager = notificationManager;
     _userManager         = userManager;
     _emailSender         = emailSender;
 }
Beispiel #2
0
 public NotificationController(IToastManager toastManager, IMapper mapper)
 {
     _toastManager = toastManager;
     _mapper       = mapper;
 }
Beispiel #3
0
 public void SetToastManager(IToastManager mainWindow)
 {
     _toastManager = mainWindow;
 }
 public ToastController(IToastManager toastManager, IMapper mapper)
 {
     _toastManager = toastManager;
     _mapper       = mapper;
 }