ISEbd-21_Chegodaev_A.Y._Law.../LawFirm/LawFirmListImplement/DataListSingleton.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2024-04-13 01:58:54 +04:00
using LawFirmListImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmListImplement
{
2024-05-10 23:48:48 +04:00
public class DataListSingleton
2024-04-13 01:58:54 +04:00
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
2024-05-10 23:48:48 +04:00
public List<Document> Documents { get; set; }
2024-05-11 00:23:02 +04:00
public List<Client> Clients { get; set; }
2024-05-11 00:36:32 +04:00
public List<Implementer> Implementers { get; set; }
2024-04-13 01:58:54 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
2024-05-10 23:48:48 +04:00
Documents = new List<Document>();
2024-05-11 00:23:02 +04:00
Clients = new List<Client>();
2024-05-11 00:36:32 +04:00
Implementers = new List<Implementer>();
2024-04-13 01:58:54 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}