Pibd-21_Ievlewa_MD._Precast.../PrecastConcretePlant/PrecastConcretePlantListImplement/DataListSingleton.cs

29 lines
860 B
C#
Raw Normal View History

2024-03-22 20:10:17 +04:00
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> Reinforceds { get; set; }
2024-04-18 23:41:30 +04:00
public List<Shop> Shops { get; set; }
2024-03-22 20:10:17 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Reinforceds = new List<Reinforced>();
2024-04-18 23:41:30 +04:00
Shops = new List<Shop>();
2024-03-22 20:10:17 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}