31 lines
936 B
C#
31 lines
936 B
C#
using PizzeriaListImplement.Models;
|
|
|
|
namespace PizzeriaListImplement
|
|
{
|
|
public class DataListSingleton
|
|
{
|
|
private static DataListSingleton? _instance;
|
|
public List<Component> Components { get; set; }
|
|
public List<Order> Orders { get; set; }
|
|
public List<Pizza> Pizzas { get; set; }
|
|
public List<Client> Clients { get; set; }
|
|
public List<Implementer> Implementers { get; set; }
|
|
private DataListSingleton()
|
|
{
|
|
Components = new List<Component>();
|
|
Orders = new List<Order>();
|
|
Pizzas = new List<Pizza>();
|
|
Clients = new List<Client>();
|
|
Implementers = new List<Implementer>();
|
|
}
|
|
public static DataListSingleton GetInstance()
|
|
{
|
|
if (_instance == null)
|
|
{
|
|
_instance = new DataListSingleton();
|
|
}
|
|
return _instance;
|
|
}
|
|
}
|
|
}
|