2024-03-23 11:06:35 +04:00
|
|
|
|
using PlumbingRepairListImplement.Models;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairListImplement
|
|
|
|
|
{
|
|
|
|
|
internal class DataListSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataListSingleton? _instance;
|
|
|
|
|
|
|
|
|
|
public List<Component> Components { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<Order> Orders { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<Work> Works { get; set; }
|
2024-04-12 19:30:31 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
2024-04-19 18:02:08 +04:00
|
|
|
|
public List<Implementer> Implementers { get; set; }
|
|
|
|
|
|
2024-03-23 11:06:35 +04:00
|
|
|
|
|
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Works = new List<Work>();
|
2024-04-12 19:30:31 +04:00
|
|
|
|
Clients = new List<Client>();
|
2024-04-19 18:02:08 +04:00
|
|
|
|
Implementers = new List<Implementer>();
|
2024-03-23 11:06:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|