diff --git a/EnvelopeGenerator.Application/Behaviors/SignDocBehavior.cs b/EnvelopeGenerator.Application/Behaviors/SignDocBehavior.cs new file mode 100644 index 00000000..86f2d72f --- /dev/null +++ b/EnvelopeGenerator.Application/Behaviors/SignDocBehavior.cs @@ -0,0 +1,12 @@ +using EnvelopeGenerator.Application.DocStatus.Commands; +using MediatR; + +namespace EnvelopeGenerator.Application.Behaviors; + +public class SignDocBehavior : IPipelineBehavior +{ + public Task Handle(SaveDocStatusCommand request, RequestHandlerDelegate next, CancellationToken cancellationToken) + { + throw new NotImplementedException(); + } +} diff --git a/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs b/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs index da8b8857..761c3c9b 100644 --- a/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs +++ b/EnvelopeGenerator.Web/Controllers/EnvelopeController.cs @@ -2,7 +2,6 @@ using EnvelopeGenerator.Web.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; -using System.Text.Encodings.Web; using EnvelopeGenerator.Application.Extensions; using EnvelopeGenerator.Application.Interfaces.Services; using EnvelopeGenerator.Domain.Constants;