终端一体化运控平台
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.
 
 
 

37 satır
970 B

  1. using BPA.Helper;
  2. using BPASmartClient.Model;
  3. using BPASmartClient.Model.小炒机;
  4. using BPA.Helper;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Collections.ObjectModel;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace BPASmartClient.ViewModel
  12. {
  13. public class FoodMenuViewModel: NotifyBase
  14. {
  15. /// <summary>
  16. /// 菜单
  17. /// </summary>
  18. public ObservableCollection<FoodMenuModel> FoodMenus { get; set; } = new ObservableCollection<FoodMenuModel>();
  19. public BPARelayCommand<object> StartOrder { get; set; }
  20. public FoodMenuViewModel()
  21. {
  22. Json<MaterialAndFryingTime>.Data.materials?.Keys?.ToList().ForEach(key => FoodMenus.Add(new FoodMenuModel { GoodName = key }));
  23. StartOrder = new BPARelayCommand<object>((o) =>
  24. {
  25. ActionManage.GetInstance.Send("开始下单", o);
  26. });
  27. }
  28. }
  29. }