PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaListImplement/DataListSingleton.cs

30 lines
817 B
C#
Raw Normal View History

2023-02-13 20:46:36 +04:00
using PizzeriaListImplement.Models;
namespace PizzeriaListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Pizza> Pizzas { get; set; }
2023-03-27 22:50:07 +04:00
public List<Shop> Shops { get; set; }
2023-02-13 20:46:36 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Pizzas = new List<Pizza>();
2023-03-27 22:50:07 +04:00
Shops = new List<Shop>();
2023-02-13 20:46:36 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}