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();
///
/// 所有工单
///
public List Dyelots
{
get
{
return dyelots;
}
set
{
dyelots = value;
RaisePropertyChanged();
}
}
///
///
///
public QueryViewModel()
{
dyelots = new DyelotsProvider().Select();
}
}
}