25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using BPA.Helper;
- using BPASmartClient.Model;
- using BPASmartClient.Model.小炒机;
- using BPA.Helper;
-
- 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: NotifyBase
- {
- /// <summary>
- /// 菜单
- /// </summary>
- public ObservableCollection<FoodMenuModel> FoodMenus { get; set; } = new ObservableCollection<FoodMenuModel>();
-
- public BPARelayCommand<object> StartOrder { get; set; }
-
- public FoodMenuViewModel()
- {
- Json<MaterialAndFryingTime>.Data.materials?.Keys?.ToList().ForEach(key => FoodMenus.Add(new FoodMenuModel { GoodName = key }));
-
- StartOrder = new BPARelayCommand<object>((o) =>
- {
- ActionManage.GetInstance.Send("开始下单", o);
- });
- }
-
-
- }
- }
|