using FurnitureAssemblyListImplement.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FurnitureAssemblyListImplement { public class DataListSingleton { private static DataListSingleton? _instance; public List Components { get; set; } public List Orders { get; set; } public List Furnitures { get; set; } public List Clients { get; set; } public List Implementers { get; set; } public List Messages { get; set; } private DataListSingleton() { Components = new List(); Orders = new List(); Furnitures = new List(); Clients = new List(); Implementers = new List(); Messages = new List(); } public static DataListSingleton GetInstance() { if (_instance == null) { _instance = new DataListSingleton(); } return _instance; } } }