38 lines
1.1 KiB
C#
Raw Normal View History

2024-02-12 01:33:41 +04:00
using AbstractLawFirmListImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractLawFirmListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Document> Documents { get; set; }
2024-04-06 01:13:12 +04:00
public List<Client> Clients { get; set; }
2024-04-20 00:13:54 +04:00
public List<Implementer> Implementers { get; set; }
2024-05-05 00:28:40 +04:00
public List<MessageInfo> Messages { get; set; }
private DataListSingleton()
2024-02-12 01:33:41 +04:00
{
Components = new List<Component>();
Orders = new List<Order>();
Documents = new List<Document>();
2024-04-06 01:13:12 +04:00
Clients = new List<Client>();
2024-04-20 00:13:54 +04:00
Implementers = new List<Implementer>();
2024-05-05 00:28:40 +04:00
Messages = new List<MessageInfo>();
}
2024-02-12 01:33:41 +04:00
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}