PIbd22_NikiforovaMV_Automob.../AutomobilePlantListImplements/DataListSingleton.cs
2024-06-22 22:27:59 +04:00

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