using Components.Interfaces; using Data.Models; namespace BlazorServer.Services; public class BlazorServerBlogNotificationService : IBlogNotificationService { public event Action? BlogPostChanged; public Task SendNotification(BlogPost post) { BlogPostChanged?.Invoke(post); return Task.CompletedTask; } }