public SqlCommandWrapper(SqlConnectionWrapper connection, string query)
 {
     command = new SqlCommand(query, connection.sqlConnection);
 }
示例#2
0
 public IConnectionWrapper CreateConnection()
 {
     sqlConnectionWrapper = new SqlConnectionWrapper(connectionString);
     return(sqlConnectionWrapper);
 }