public BetGameEditorControl(BetGameCommand command)
        {
            InitializeComponent();

            this.existingCommand = command;
            this.viewModel       = new BetGameEditorControlViewModel(this.existingCommand);
        }
        public BetGameEditorControl(UserCurrencyViewModel currency)
        {
            InitializeComponent();

            this.viewModel = new BetGameEditorControlViewModel(currency);
        }