31 lines
982 B
C#
31 lines
982 B
C#
using SushiBarListImplement.Models;
|
|
using SushiBarListImplements.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<Client> Clients { get; set; }
|
|
public List<Implementer> Implementers { get; set; }
|
|
private DataListSingleton()
|
|
{
|
|
Ingredients = new List<Ingredient>();
|
|
Orders = new List<Order>();
|
|
ListSushi = new List<Sushi>();
|
|
Clients = new List<Client>();
|
|
Implementers = new List<Implementer>();
|
|
}
|
|
public static DataListSingleton GetInstance()
|
|
{
|
|
if (_instance == null)
|
|
{
|
|
_instance = new DataListSingleton();
|
|
}
|
|
return _instance;
|
|
}
|
|
}
|
|
} |