internal ConnectorBase GetConnector(
     ConnectionServiceProvider csp,
     string connectionType)
 {
     return(csp.GetConnector(connectionType));
 }
示例#2
0
        public ConnectorBaseProxy GetConnector(string connectionType)
        {
            ConnectorBase connectorBase = ConnectionServiceProvider.GetConnector(connectionType);

            return(new ConnectorBaseProxy(connectorBase));
        }