41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using SecuritySystemListImplement.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SecuritySystemListImplement
|
|
{
|
|
//класс для списков, в которых будет храниться информация при работе приложения
|
|
public class DataListSingleton
|
|
{
|
|
private static DataListSingleton? _instance;
|
|
|
|
//список для хранения заготовок
|
|
public List<Sensor> Sensors { get; set; }
|
|
|
|
//список для хранения изделий
|
|
public List<Secure> Secures { get; set; }
|
|
|
|
//список для хранения заказов
|
|
public List<Order> Orders { get; set; }
|
|
|
|
public DataListSingleton()
|
|
{
|
|
Sensors = new List<Sensor>();
|
|
Secures = new List<Secure>();
|
|
Orders = new List<Order>();
|
|
}
|
|
|
|
public static DataListSingleton GetInstance()
|
|
{
|
|
if(_instance == null)
|
|
{
|
|
_instance = new DataListSingleton();
|
|
}
|
|
|
|
return _instance;
|
|
}
|
|
}
|
|
} |