Ejemplo n.º 1
0
 public SqlCommandWrapper(SqlConnectionWrapper connection, string query)
 {
     command = new SqlCommand(query, connection.sqlConnection);
 }
Ejemplo n.º 2
0
 public IConnectionWrapper CreateConnection()
 {
     sqlConnectionWrapper = new SqlConnectionWrapper(connectionString);
     return(sqlConnectionWrapper);
 }