laatzen/Common/Logic/Common.Logic.Extensions.SQL/Interfaces/ISQLConnection.cs
2024-07-01 08:42:23 +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);
}
}