refactor(AnnotationHandler): rename as DocStatusHandler

This commit is contained in:
tekh 2025-10-16 10:18:32 +02:00
parent 4abed0e1bc
commit e88bd55198

View File

@ -8,7 +8,7 @@ namespace EnvelopeGenerator.Application.Common.Notifications.DocSigned.Handlers;
/// <summary>
///
/// </summary>
public class AnnotationHandler : INotificationHandler<DocSignedNotification>
public class DocStatusHandler : INotificationHandler<DocSignedNotification>
{
private readonly ISender _sender;
@ -16,7 +16,7 @@ public class AnnotationHandler : INotificationHandler<DocSignedNotification>
///
/// </summary>
/// <param name="sender"></param>
public AnnotationHandler(ISender sender)
public DocStatusHandler(ISender sender)
{
_sender = sender;
}