25 lines
666 B
C#
25 lines
666 B
C#
|
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> Sushi { get; set; }
|
|||
|
private DataListSingleton()
|
|||
|
{
|
|||
|
Components = new List<Component>();
|
|||
|
Orders = new List<Order>();
|
|||
|
Sushi = new List<Sushi>();
|
|||
|
}
|
|||
|
public static DataListSingleton GetInstance()
|
|||
|
{
|
|||
|
_instance ??= new DataListSingleton();
|
|||
|
return _instance;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|