From f87f8a1d17162a76dfa6f5f4b9d087765d2d8f8c Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 3 Sep 2025 16:31:14 +0200 Subject: [PATCH] refactor(DocSignedNotificationStatusHandler): rename as DocSignedNotificationAnnotationHandler --- ...usHandler.cs => DocSignedNotificationAnnotationHandler.cs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename EnvelopeGenerator.Application/Common/Notifications/Handlers/{DocSignedNotificationStatusHandler.cs => DocSignedNotificationAnnotationHandler.cs} (85%) diff --git a/EnvelopeGenerator.Application/Common/Notifications/Handlers/DocSignedNotificationStatusHandler.cs b/EnvelopeGenerator.Application/Common/Notifications/Handlers/DocSignedNotificationAnnotationHandler.cs similarity index 85% rename from EnvelopeGenerator.Application/Common/Notifications/Handlers/DocSignedNotificationStatusHandler.cs rename to EnvelopeGenerator.Application/Common/Notifications/Handlers/DocSignedNotificationAnnotationHandler.cs index 512ba9c9..88027f99 100644 --- a/EnvelopeGenerator.Application/Common/Notifications/Handlers/DocSignedNotificationStatusHandler.cs +++ b/EnvelopeGenerator.Application/Common/Notifications/Handlers/DocSignedNotificationAnnotationHandler.cs @@ -8,7 +8,7 @@ namespace EnvelopeGenerator.Application.Common.Notifications.Handlers; /// /// /// -public class DocSignedNotificationStatusHandler : INotificationHandler +public class DocSignedNotificationAnnotationHandler : INotificationHandler { private readonly ISender _sender; @@ -16,7 +16,7 @@ public class DocSignedNotificationStatusHandler : INotificationHandler /// - public DocSignedNotificationStatusHandler(ISender sender) + public DocSignedNotificationAnnotationHandler(ISender sender) { _sender = sender; }