namespace GreadyPoang.Services; public class PopupEventHub : IPopupEventHub { public event EventHandler? InfoPopupCloseRequested; public void RaiseInfoPopupClose() { InfoPopupCloseRequested?.Invoke(this, EventArgs.Empty); } }