PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopListImplement/DataListSingleton.cs

34 lines
962 B
C#
Raw Normal View History

2024-02-05 20:36:39 +04:00
using ComputersShopListImplement.Models;
using System;
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<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Computer> Computers { get; set; }
2024-04-01 20:00:17 +04:00
public List<Client> Clients { get; set; }
2024-02-05 20:36:39 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Computers = new List<Computer>();
2024-04-01 20:00:17 +04:00
Clients = new List<Client>();
2024-02-05 20:36:39 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}