PIbd22_NikiforovaMV_Automob.../AutomobilePlantListImplements/DataListSingleton.cs

26 lines
739 B
C#
Raw Normal View History

2024-04-17 10:13:26 +04:00
using AutomobilePlantListImplements.Models;
namespace AutomobilePlantListImplements
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Car> Cars { get; set; }
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Cars = new List<Car>();
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}