using PizzeriaListImplement.Models; namespace PizzeriaListImplement { public class DataListSingleton { private static DataListSingleton? _instance; public List Components { get; set; } public List Orders { get; set; } public List Pizzas { get; set; } public List Clients { get; set; } private DataListSingleton() { Components = new List(); Orders = new List(); Pizzas = new List(); Clients = new List(); } public static DataListSingleton GetInstance() { if (_instance == null) { _instance = new DataListSingleton(); } return _instance; } } }