public WordScrambleGameEditorControl(WordScrambleGameCommand command)
        {
            InitializeComponent();

            this.existingCommand = command;
            this.viewModel       = new WordScrambleGameEditorControlViewModel(command);
        }
        public WordScrambleGameEditorControl(CurrencyModel currency)
        {
            InitializeComponent();

            this.viewModel = new WordScrambleGameEditorControlViewModel(currency);
        }