Refactor StundePage to MVVM with DI

This commit is contained in:
2025-12-25 09:19:32 +01:00
parent 8da8734065
commit 15856d0dd0
5 changed files with 26 additions and 54 deletions

View File

@@ -5,7 +5,7 @@ using System.Text;
using System.Threading.Tasks;
namespace Jugenddienst_Stunden.Interfaces;
internal interface IAlertService {
public interface IAlertService {
event EventHandler<string> AlertRaised;
void Raise(string message);
}