22 lines
606 B
C#
22 lines
606 B
C#
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();
|
|
}
|
|
}
|