using Dapper;
using EnvelopeGenerator.Domain.Entities;
namespace EnvelopeGenerator.Application.Common.Interfaces.SQLExecutor;
///
///
///
public interface IEnvelopeExecutor : ISQLExecutor
{
///
///
///
///
///
///
///
///
///
Task CreateEnvelopeAsync(int userId, string title = "", string message = "", bool tfaEnabled = false, CancellationToken cancellation = default);
}