PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopListImplement/DataListSingleton.cs

29 lines
830 B
C#
Raw Normal View History

2024-02-09 22:08:31 +04:00
using CarRepairShopListImplement.Models;
namespace CarRepairShopListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Repair> Repairs { get; set; }
2024-03-14 19:28:27 +04:00
public List<Shop> Shops { get; set; }
2024-02-09 22:08:31 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Repairs = new List<Repair>();
2024-03-14 19:28:27 +04:00
Shops = new List<Shop>();
2024-02-09 22:08:31 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}