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