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

33 lines
1007 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-04-06 19:58:28 +04:00
public List<Client> Clients { get; set; }
2024-04-22 22:29:10 +04:00
public List<Implementer> Implementers { get; set; }
private DataListSingleton()
2024-02-09 22:08:31 +04:00
{
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-04-06 19:58:28 +04:00
Clients = new List<Client>();
2024-04-22 22:29:10 +04:00
Implementers = new List<Implementer>();
}
2024-02-09 22:08:31 +04:00
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}