PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopListImplement/DataListSingleton.cs

28 lines
731 B
C#
Raw Normal View History

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