laatzen/LaaProductionWeb/LaaProduction.SQL/Interfaces/ISQLConnection.cs
2024-03-06 12:48:08 +01:00

16 lines
527 B
C#

namespace LaaProduction.SQL.Interfaces
{
/// <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);
}
}