PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairListImplement/DataListSingleton.cs
2024-03-23 11:06:35 +04:00

32 lines
747 B
C#

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