Updated all references to `SignCommand` to use the new `SigningCommand` name for consistency and clarity. This includes changes to class definitions, method signatures, and pipeline behaviors in the following files: - `DependencyInjection.cs`: Updated pipeline behaviors to use `SigningCommand`. - `AnnotationBehavior.cs`: Updated class definition and methods to use `SigningCommand`. Marked `SignCommand` as `[Obsolete]`. - `DocStatusBehavior.cs`, `EnvelopeReceiverResolutionBehavior.cs`, `HistoryBehavior.cs`, `SendSignedMailBehavior.cs`: Updated class definitions and methods to use `SigningCommand`. - `SendSignedMailBehavior.cs`: Updated `CreatePlaceHolders` method to accept `SigningCommand`. - `SigningCommand.cs`: Renamed `SignCommand` record to `SigningCommand` and updated internal methods and properties. Renamed `SignCommandHandler` to `SigningCommandHandler`. Marked `SignCommand` as `[Obsolete]` where applicable to indicate deprecation. These changes improve code readability and align the command name with its purpose in the signing process.
42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using DigitalData.Core.Abstraction.Application.Repository;
|
|
using EnvelopeGenerator.Application.Common.Dto;
|
|
using EnvelopeGenerator.Application.Signatures.Commands;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
using MediatR;
|
|
|
|
namespace EnvelopeGenerator.Application.Signatures.Behaviors;
|
|
|
|
/// <summary>
|
|
/// Pipeline behavior that saves annotations.
|
|
/// Executes first in the signing process.
|
|
/// </summary>
|
|
[Obsolete("This notification is deprecated. Use Signature.Commands.SignCommand instead.")]
|
|
public class AnnotationBehavior : IPipelineBehavior<SigningCommand, Unit>
|
|
{
|
|
private readonly IRepository<ElementAnnotation> _repo;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="repository"></param>
|
|
public AnnotationBehavior(IRepository<ElementAnnotation> repository)
|
|
{
|
|
_repo = repository;
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <param name="next"></param>
|
|
/// <param name="cancellationToken"></param>
|
|
/// <returns></returns>
|
|
public async Task<Unit> Handle(SigningCommand request, RequestHandlerDelegate<Unit> next, CancellationToken cancellationToken)
|
|
{
|
|
if (request.PsPdfKitAnnotation is PsPdfKitAnnotation annot)
|
|
await _repo.CreateAsync(annot.Structured, cancellationToken);
|
|
|
|
return await next(cancellationToken);
|
|
}
|
|
}
|