PIbd-23_Minhasapov_R.H._Aut.../AutomobilePlant/AutomobilePlantListImplements/DataListSingleton.cs

28 lines
823 B
C#

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; }
public List<Shop> Shops { get; set; }
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Cars = new List<Car>();
Shops = new List<Shop>();
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}