public MainViewModel(CommandExecutor executor, Context context)
        {
            this.commandExecutor = executor;
            this.context = context;

            context.CurrentModuleChanged += CurrenModuleChanged;
        }
 public CommandExecutor(Context context)
 {
     this.context = context;
 }
 public ProgramCommand(Context context)
 {
     this.context = context;
 }