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

38 lines
1.1 KiB
C#
Raw Permalink 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-06-16 21:45:04 +04:00
public List<MessageInfo> Messages { get; set; }
private DataListSingleton()
2024-04-13 01:58:54 +04:00
{
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-06-16 21:45:04 +04:00
Messages = new List<MessageInfo>();
}
2024-04-13 01:58:54 +04:00
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}