PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryListImplement/DataListSingleton.cs

28 lines
839 B
C#
Raw Normal View History

2024-03-13 14:54:56 +04:00
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; }
2024-05-05 03:45:20 +04:00
public List<Client> Clients { get; set; }
2024-03-13 14:54:56 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Pastries = new List<Pastry>();
2024-05-05 03:45:20 +04:00
Clients = new List<Client>();
2024-03-13 14:54:56 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}