using BPASmartClient.CustomResource.Pages.Model;
using BPASmartClient.CustomResource.UserControls;
using BPASmartClient.CustomResource.UserControls.MessageShow;
using BPASmartClient.Helper;
using FryPot_DosingSystem.Model;
using FryPot_DosingSystem.View;
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;
using System.Windows;
namespace FryPot_DosingSystem.ViewModel
{
internal class RecipeSetViewModel : ObservableObject
{
/////
///// 配方编号
/////
//private int _serialNumber;
//public int SerialNumber { get { return _serialNumber; } set { _serialNumber = value;OnPropertyChanged(); } }
/////
///// 配方名称
/////
//private string _recipeName;
//public string RecipeName { get { return _recipeName; } set { _recipeName = value; OnPropertyChanged(); } }
public ObservableCollection recipeModels { get; set; } = new ObservableCollection();
public RelayCommand NewRecipe { get; set; }
public RelayCommand SaveRecipe { get; set; }
///
/// 工艺操作
///
public RelayCommand OperateFlowProcess { get; set; }
///
/// 编辑配方
///
public RelayCommand