Files
GreadyPoang/GreadyPoang.Services/Services/Implements/PopupEventHub.cs

13 lines
308 B
C#

namespace GreadyPoang.Services;
public class PopupEventHub : IPopupEventHub
{
public event EventHandler<PopupCloseEventArgs>? InfoPopupCloseRequested;
public void RaiseInfoPopupClose(string popupId)
{
InfoPopupCloseRequested?.Invoke(this, new PopupCloseEventArgs(popupId));
}
}