PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopListImplement/DataListSingleton.cs
Arkadiy Radaev 9828b2673a res 1 hard
2024-05-18 17:45:21 +04:00

30 lines
815 B
C#

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; }
public List<Shop> Shops { get; set; }
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Gifts = new List<Gift>();
Shops = new List<Shop>();
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}