PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryListImplement/DataListSingleton.cs
2024-03-13 14:54:56 +04:00

26 lines
747 B
C#

using ConfectioneryListImplement.Models;
namespace ConfectioneryListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Pastry> Pastries { get; set; }
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Pastries = new List<Pastry>();
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}