refactor(Interfaces): move Interfaces to Common

This commit is contained in:
2025-09-10 16:42:52 +02:00
parent 95b54fa1f1
commit 0a9e1dccb9
97 changed files with 117 additions and 117 deletions

View File

@@ -0,0 +1,20 @@
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
{
}