PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopListImplement/DataListSingleton.cs
Arkadiy Radaev b8c207c772 res5
2024-04-09 17:02:29 +04:00

29 lines
769 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<Client> Clients { 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;
}
}
}