using EnvelopeGenerator.Domain.Entities; namespace EnvelopeGenerator.Application.Contracts.SQLExecutor; /// /// /// public interface IEnvelopeReceiverExecutor { /// /// /// /// /// /// /// /// /// Task AddEnvelopeReceiverAsync(string envelope_uuid, string emailAddress, string? salutation = null, string? phone = null, CancellationToken cancellation = default); }