namespace Common.Logic.Extensions.SQL.Interfaces
{
using System;
///
/// simply exposes the method.
///
public interface ISQLConnection
{
///
/// Creates a command with given command text.
///
/// - SQL query String.
///
ISQLCommand CreateCommand(String commandText);
}
}