From e88bd551981a559b02da2889864fd534f7e94500 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 16 Oct 2025 10:18:32 +0200 Subject: [PATCH] refactor(AnnotationHandler): rename as DocStatusHandler --- .../Handlers/{AnnotationHandler.cs => DocStatusHandler.cs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename EnvelopeGenerator.Application/Common/Notifications/DocSigned/Handlers/{AnnotationHandler.cs => DocStatusHandler.cs} (88%) diff --git a/EnvelopeGenerator.Application/Common/Notifications/DocSigned/Handlers/AnnotationHandler.cs b/EnvelopeGenerator.Application/Common/Notifications/DocSigned/Handlers/DocStatusHandler.cs similarity index 88% rename from EnvelopeGenerator.Application/Common/Notifications/DocSigned/Handlers/AnnotationHandler.cs rename to EnvelopeGenerator.Application/Common/Notifications/DocSigned/Handlers/DocStatusHandler.cs index fdf43468..306741f4 100644 --- a/EnvelopeGenerator.Application/Common/Notifications/DocSigned/Handlers/AnnotationHandler.cs +++ b/EnvelopeGenerator.Application/Common/Notifications/DocSigned/Handlers/DocStatusHandler.cs @@ -8,7 +8,7 @@ namespace EnvelopeGenerator.Application.Common.Notifications.DocSigned.Handlers; /// /// /// -public class AnnotationHandler : INotificationHandler +public class DocStatusHandler : INotificationHandler { private readonly ISender _sender; @@ -16,7 +16,7 @@ public class AnnotationHandler : INotificationHandler /// /// /// - public AnnotationHandler(ISender sender) + public DocStatusHandler(ISender sender) { _sender = sender; }