using Jugenddienst_Stunden.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Jugenddienst_Stunden.Infrastructure; internal sealed class AlertService : IAlertService { public event EventHandler? AlertRaised; public void Raise(string message) { AlertRaised?.Invoke(this, message); } }