using Connected.Notifications; namespace Common.Documents; public interface IDocumentService : IServiceNotifications { event ServiceEventHandler>? ItemInserted; event ServiceEventHandler>? ItemUpdated; event ServiceEventHandler>? ItemDeleted; }