SushiBarBase/SushiBar/SushiBarListImplement/DataListSingleton.cs

30 lines
824 B
C#
Raw Normal View History

2024-02-09 17:38:25 +04:00
using SushiBarListImplement.Models;
namespace SushiBarListImplement
{
public class DataListSingleton
{
private static DataListSingleton _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Sushi> Sushis { get; set; }
2024-05-19 17:58:47 +04:00
public List<Client> Clients { get; set; }
2024-02-09 17:38:25 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Sushis = new List<Sushi>();
2024-05-19 17:58:47 +04:00
Clients = new List<Client>();
2024-02-09 17:38:25 +04:00
}
2024-02-14 09:58:18 +04:00
public static DataListSingleton GetInstance()
2024-02-09 17:38:25 +04:00
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}