2024-02-06 12:44:43 +04:00
|
|
|
|
using FurnitureAssemblyListImplement.Models;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureAssemblyListImplement
|
|
|
|
|
{
|
|
|
|
|
public class DataListSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataListSingleton? _instance;
|
|
|
|
|
public List<Component> Components { get; set; }
|
|
|
|
|
public List<Order> Orders { get; set; }
|
|
|
|
|
public List<Furniture> Furnitures { get; set; }
|
2024-04-29 18:16:15 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
2024-04-29 18:59:10 +04:00
|
|
|
|
public List<Implementer> Implementers { get; set; }
|
2024-05-14 11:30:42 +04:00
|
|
|
|
public List<MessageInfo> Messages { get; set; }
|
2024-02-06 12:44:43 +04:00
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Furnitures = new List<Furniture>();
|
2024-04-29 18:16:15 +04:00
|
|
|
|
Clients = new List<Client>();
|
2024-04-29 18:59:10 +04:00
|
|
|
|
Implementers = new List<Implementer>();
|
2024-05-14 11:30:42 +04:00
|
|
|
|
Messages = new List<MessageInfo>();
|
2024-02-06 12:44:43 +04:00
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|