PIbd-23_Minhasapov_R.H._Aut.../AutomobilePlant/AutomobilePlantListImplements/DataListSingleton.cs
2023-04-23 23:55:57 +04:00

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