common/Logic/Common.Logic.Extensions.SQL/Interfaces/ISQLConnection.cs
2026-04-23 17:50:07 +02:00

18 lines
556 B
C#

namespace Common.Logic.Extensions.SQL.Interfaces
{
using System;
/// <summary>
/// <see cref="ISQLConnection"/> simply exposes the <see cref="ISQLConnection.CreateCommand(String)"/> method.
/// </summary>
public interface ISQLConnection
{
/// <summary>
/// Creates a command with given command text.
/// </summary>
/// <param name="commandText"><see cref="System.String"/> - SQL query String.</param>
/// <returns></returns>
ISQLCommand CreateCommand(String commandText);
}
}