using GalaSoft.MvvmLight; using Models; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Audit.ViewModel { /// /// QueryViewModel /// public class QueryViewModel : ViewModelBase { private List dyelots = new List(); private List dyelotsBulkedRecipe = new List(); /// /// 所有工单 /// public List Dyelots { get { return dyelots; } set { dyelots = value; RaisePropertyChanged(); } } /// /// DyelotsBulkedRecipe /// public List DyelotsBulkedRecipe { get { return dyelotsBulkedRecipe; } set { dyelotsBulkedRecipe = value; RaisePropertyChanged(); } } /// /// /// public QueryViewModel() { dyelots = new DyelotsProvider().Select(); } } }