ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarListImplement/DataListSingleton.cs

29 lines
870 B
C#
Raw Normal View History

2024-02-09 15:31:49 +04:00
using SushiBarListImplement.Models;
2024-05-01 10:50:16 +04:00
using SushiBarListImplements.Models;
2024-02-09 15:31:49 +04:00
namespace SushiBarListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Ingredient> Ingredients { get; set; }
public List<Order> Orders { get; set; }
public List<Sushi> ListSushi { get; set; }
2024-05-01 10:50:16 +04:00
public List<Client> Clients { get; set; }
2024-02-09 15:31:49 +04:00
private DataListSingleton()
{
Ingredients = new List<Ingredient>();
Orders = new List<Order>();
ListSushi = new List<Sushi>();
2024-05-01 10:50:16 +04:00
Clients = new List<Client>();
2024-02-09 15:31:49 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}