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