init DocSignedNotificationStatusHandler

This commit is contained in:
tekh 2025-09-03 15:47:37 +02:00
parent a433654f86
commit aafed0f4f4
3 changed files with 22 additions and 5 deletions

View File

@ -7,7 +7,7 @@ namespace EnvelopeGenerator.Application.Common.Notifications;
///
/// </summary>
/// <param name="Original"></param>
public record DocSignedNotification(EnvelopeReceiverDto Original) : EnvelopeReceiverDto(Original)
public record DocSignedNotification(EnvelopeReceiverDto Original) : EnvelopeReceiverDto(Original), INotification
{
}

View File

@ -0,0 +1,21 @@
using MediatR;
namespace EnvelopeGenerator.Application.Common.Notifications.Handlers;
/// <summary>
///
/// </summary>
public class DocSignedNotificationStatusHandler : INotificationHandler<DocSignedNotification>
{
/// <summary>
///
/// </summary>
/// <param name="notification"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public Task Handle(DocSignedNotification notification, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}

View File

@ -95,8 +95,4 @@
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Common\Notifications\Handlers\" />
</ItemGroup>
</Project>