void IToastNotificationAdapter.Show(IToastNotification notification) { }
void IToastNotificationAdapter.Hide(IToastNotification notification) { }
public ProfileController(IToastNotification toastNotification, IOptions<Appsettings> appOptions) : base(toastNotification, appOptions) { }
void IToastNotificationAdapter.Hide(IToastNotification notification) { if(notifier == null) ComFunctions.CheckHRESULT(manager.CreateToastNotifierWithId(appId, out notifier)); if(notifier != null && notification != null) notifier.Hide(notification); }
public ResumeMakerBaseController(IToastNotification toastNotification, IOptions<Appsettings> appOptions) { ToastNotification = toastNotification; AppSettings = appOptions.Value; }
public ContactDetailsController(IToastNotification toastNotification, IOptions<Appsettings> appOptions) : base(toastNotification, appOptions) { }
public PersonalDetailController(IToastNotification toastNotification, IOptions<Appsettings> appOptions) : base(toastNotification, appOptions) { }
public ExperienceController(IToastNotification toastNotification, IOptions<Appsettings> appOptions) : base(toastNotification, appOptions) { }
public AccountController(IToastNotification toastNotification, IOptions<Appsettings> appOptions) : base(toastNotification, appOptions) { }
public SummaryController(IToastNotification toastNotification, IOptions<Appsettings> appOptions) : base(toastNotification, appOptions) { }
public ToastrViewComponent(IToastNotification toastNotification) { ToastNotification = toastNotification; }