using BPASmartClient.Helper; using BPASmartClient.Model; using Microsoft.Toolkit.Mvvm.ComponentModel; using Microsoft.Toolkit.Mvvm.Input; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.ViewModel { public class FoodMenuViewModel: ObservableObject { public ObservableCollection FoodMenus { get; set; } = GlobalFoodMenu.LocalFoodMenus; public RelayCommand StartOrder { get; set; } public FoodMenuViewModel() { StartOrder = new RelayCommand((o) => { ActionManage.GetInstance.Send("开始下单", o); }); } } }