laatzen/LaaProductionWeb/LaaProduction.Data.SQL/Interfaces/ISQLConnection.cs
2024-04-22 09:00:01 +02:00

16 lines
532 B
C#

namespace LaaProduction.Data.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);
}
}