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