using EnvelopeGenerator.Domain.Entities;
namespace EnvelopeGenerator.Application.Common.Interfaces.SQLExecutor;
///
///
///
public interface IDocumentExecutor
{
///
///
///
///
///
///
///
Task CreateDocumentAsync(string base64, string envelope_uuid, CancellationToken cancellation = default);
}