ISEbd-21_Putilin_P.A._Preca.../PrecastConcretePlant/PrecastConcretePlantListImplement/DataListSingleton.cs

27 lines
774 B
C#

using PrecastConcretePlantListImplement.Models;
namespace PrecastConcretePlantListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Reinforced> Reinforced { get; set; }
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Reinforced = new List<Reinforced>();
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}