Aparyan.ISE-22.MotorPlant/MoorPlantListImplement/DataListSingleton.cs
2024-03-23 18:12:12 +04:00

26 lines
739 B
C#

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