28 lines
825 B
C#
28 lines
825 B
C#
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; }
|
|
public List<Shop> Shops { get; set; }
|
|
private DataListSingleton()
|
|
{
|
|
Ingredients = new List<Ingredient>();
|
|
Orders = new List<Order>();
|
|
ListSushi = new List<Sushi>();
|
|
Shops = new List<Shop>();
|
|
}
|
|
public static DataListSingleton GetInstance()
|
|
{
|
|
if (_instance == null)
|
|
{
|
|
_instance = new DataListSingleton();
|
|
}
|
|
return _instance;
|
|
}
|
|
}
|
|
} |