26 lines
747 B
C#
26 lines
747 B
C#
|
using ConfectioneryListImplement.Models;
|
|||
|
namespace ConfectioneryListImplement
|
|||
|
{
|
|||
|
public class DataListSingleton
|
|||
|
{
|
|||
|
private static DataListSingleton? _instance;
|
|||
|
public List<Component> Components { get; set; }
|
|||
|
public List<Order> Orders { get; set; }
|
|||
|
public List<Pastry> Pastries { get; set; }
|
|||
|
private DataListSingleton()
|
|||
|
{
|
|||
|
Components = new List<Component>();
|
|||
|
Orders = new List<Order>();
|
|||
|
Pastries = new List<Pastry>();
|
|||
|
}
|
|||
|
public static DataListSingleton GetInstance()
|
|||
|
{
|
|||
|
if (_instance == null)
|
|||
|
{
|
|||
|
_instance = new DataListSingleton();
|
|||
|
}
|
|||
|
return _instance;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|