コード例 #1
0
 public SqlCommandWrapper(SqlConnectionWrapper connection, string query)
 {
     command = new SqlCommand(query, connection.sqlConnection);
 }
コード例 #2
0
ファイル: SqlWrapper.cs プロジェクト: sasan-salem/AutoOption
 public IConnectionWrapper CreateConnection()
 {
     sqlConnectionWrapper = new SqlConnectionWrapper(connectionString);
     return(sqlConnectionWrapper);
 }