20 lines
503 B
C#
20 lines
503 B
C#
namespace EnvelopeGenerator.Application.Common.Interfaces.SQLExecutor;
|
|
|
|
/// <summary>
|
|
/// Represents a raw SQL query contract.
|
|
/// </summary>
|
|
public interface ISQL
|
|
{
|
|
/// <summary>
|
|
/// Gets the raw SQL query string.
|
|
/// </summary>
|
|
string Raw { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represents a typed SQL query contract for a specific entity.
|
|
/// </summary>
|
|
/// <typeparam name="TEntity">The type of the entity associated with the SQL query.</typeparam>
|
|
public interface ISQL<TEntity> : ISQL
|
|
{
|
|
} |