namespace EnvelopeGenerator.Application.Common.Interfaces.SQLExecutor;
///
/// Represents a raw SQL query contract.
///
public interface ISQL
{
///
/// Gets the raw SQL query string.
///
string Raw { get; }
}
///
/// Represents a typed SQL query contract for a specific entity.
///
/// The type of the entity associated with the SQL query.
public interface ISQL : ISQL
{
}