2024-02-06 12:37:25 +04:00
|
|
|
|
using GiftShopListImplement.Models;
|
|
|
|
|
|
|
|
|
|
namespace GiftShopListImplement
|
|
|
|
|
{
|
|
|
|
|
internal class DataListSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataListSingleton? _instance;
|
|
|
|
|
public List<Component> Components { get; set; }
|
|
|
|
|
public List<Order> Orders { get; set; }
|
|
|
|
|
public List<Gift> Gifts { get; set; }
|
2024-04-09 17:02:29 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-04-09 17:02:29 +04:00
|
|
|
|
private DataListSingleton()
|
2024-02-06 12:37:25 +04:00
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Gifts = new List<Gift>();
|
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|