From b832637a6ae8a169632826e02221ebb895023929 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 9 Jun 2026 18:23:08 +0200 Subject: [PATCH] Update AnnotationController with new dependencies Added `using` directives for additional namespaces to support application DTOs, extensions, services, notifications, and envelope receiver queries. These changes introduce new functionality and dependencies to the `AnnotationController` class. --- EnvelopeGenerator.API/Controllers/AnnotationController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EnvelopeGenerator.API/Controllers/AnnotationController.cs b/EnvelopeGenerator.API/Controllers/AnnotationController.cs index e5c8b880..e0698b84 100644 --- a/EnvelopeGenerator.API/Controllers/AnnotationController.cs +++ b/EnvelopeGenerator.API/Controllers/AnnotationController.cs @@ -1,6 +1,7 @@ using DigitalData.Core.Abstraction.Application.DTO; using DigitalData.Core.Exceptions; using EnvelopeGenerator.API.Extensions; +using EnvelopeGenerator.Application.Common.Dto; using EnvelopeGenerator.Application.Common.Extensions; using EnvelopeGenerator.Application.Common.Interfaces.Services; using EnvelopeGenerator.Application.Common.Notifications.DocSigned;