16 lines
527 B
C#
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);
|
|
}
|
|
}
|