Esempio n. 1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="MKCommand" /> class.
 /// </summary>
 /// <param name="connection">The connection.</param>
 /// <param name="commandText">The command text.</param>
 public MKCommand(MKConnection connection, string commandText)
     : this(connection)
 {
     CommandText = commandText;
 }
Esempio n. 2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="MKCommand" /> class.
 /// </summary>
 /// <param name="connection">The connection.</param>
 public MKCommand(MKConnection connection)
     : this()
 {
     Connection = connection;
 }