PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarListImplement/DataListSingleton.cs

28 lines
825 B
C#
Raw Normal View History

2023-01-31 15:23:18 +04:00
using SushiBarListImplement.Models;
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; }
2023-02-13 23:13:13 +04:00
public List<Shop> Shops { get; set; }
2023-01-31 15:23:18 +04:00
private DataListSingleton()
{
Ingredients = new List<Ingredient>();
Orders = new List<Order>();
ListSushi = new List<Sushi>();
2023-02-13 23:13:13 +04:00
Shops = new List<Shop>();
2023-01-31 15:23:18 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}