namespace LaaProduction.Data.SQL.Interfaces
{
///
/// simply exposes the method.
///
public interface ISQLConnection
{
///
/// Creates a command with given command text.
///
/// - SQL query string.
///
ISQLCommand CreateCommand(string commandText);
}
}