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; }
|
2024-06-22 22:23:42 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
2024-06-22 22:27:59 +04:00
|
|
|
|
public List<Implementer> Implementers { get; set; }
|
2024-04-17 10:13:26 +04:00
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Cars = new List<Car>();
|
2024-06-22 22:23:42 +04:00
|
|
|
|
Clients = new List<Client>();
|
2024-06-22 22:27:59 +04:00
|
|
|
|
Implementers = new List<Implementer>();
|
2024-04-17 10:13:26 +04:00
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|