using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using HBLConsole.Service; using System.Collections.ObjectModel; using System.Collections.Concurrent; namespace HBLConsole.Model { public class KeepDataBase { /// /// 模拟订单数据的配置 /// public ConcurrentDictionary> simOrderConfig { get; set; } = new ConcurrentDictionary>(); /// /// 需要保存的订单数据 /// public ConcurrentDictionary> orderLists { get; set; } = new ConcurrentDictionary>(); //public static ObservableCollection orderStatusLists { get; set; } = new ObservableCollection(); //public ObservableCollection simOrderConfig { get; set; } = new ObservableCollection(); } }