public MainWindow() { InitializeComponent(); currentView = new CashRegisterView(); currentView.mainWindow = this; DataContext = currentView; }
public MenuCommand(CashRegisterView cashRegisterView, Action <int> currentAction) { _cashRegisterView = cashRegisterView; _currentAction = currentAction; }