using Microsoft.Kusto.ServiceLayer.Connection; using Microsoft.SqlServer.Management.Common; namespace Microsoft.Kusto.ServiceLayer.LanguageServices { public interface ISqlConnectionOpener { /// /// Virtual method used to support mocking and testing /// ServerConnection OpenServerConnection(ConnectionInfo connInfo, string featureName); } }