public MyViewModel()
 {
     MyCommand = new ICommandImplementation();
 }
 public CommandImplementationAdapter(CommandID id, ICommandImplementation implementation)
     : base(OnExecute, null, OnBeforeQueryStatus, id)
 {
    Implementation = implementation;
 }