/// <summary>
 /// Initializes a new instance of the EFCachingCommand class.
 /// </summary>
 /// <param name="wrappedCommand">The wrapped command.</param>
 /// <param name="commandDefinition">The command definition.</param>
 public EFCachingCommand(DbCommand wrappedCommand, DBCommandDefinitionWrapper commandDefinition)
     : base(wrappedCommand, commandDefinition)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DBCommandWrapper"/> class.
 /// </summary>
 /// <param name="wrappedCommand">The wrapped command.</param>
 /// <param name="definition">The definition.</param>
 public DBCommandWrapper(DbCommand wrappedCommand, DBCommandDefinitionWrapper definition)
 {
     this.wrappedCommand = wrappedCommand;
     this.definition = definition;
 }