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-05-14 12:40:56 +04:00
|
|
|
|
public List<Shop> Shops { 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-05-14 12:40:56 +04:00
|
|
|
|
Shops = new List<Shop>();
|
2024-02-06 12:44:43 +04:00
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|