public CommandProxy([NotNull] ConfirmedCommandConverter owner, [NotNull] ICommand command)
 {
     Contract.Requires(owner != null);
     Contract.Requires(command != null);
     _owner = owner;
     _command = command;
 }
Пример #2
0
 public CommandProxy([NotNull] ConfirmedCommandConverter owner, [NotNull] ICommand command)
 {
     Contract.Requires(owner != null);
     Contract.Requires(command != null);
     _owner   = owner;
     _command = command;
 }
 public CommandProxy([NotNull] ConfirmedCommandConverter owner, [NotNull] ICommand command)
 {
     _owner   = owner;
     _command = command;
 }
Пример #4
0
 public CommandProxy(ConfirmedCommandConverter owner, ICommand command)
 {
     _owner   = owner;
     _command = command;
 }