32 lines
904 B
C#
Raw Normal View History

2023-02-13 22:22:24 +04:00
using LawFirmListImplement.Models;
namespace LawFirmListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Blank> Blanks { get; set; }
public List<Order> Orders { get; set; }
public List<Document> Documents { get; set; }
2023-03-28 01:05:56 +04:00
public List<Client> Clients { get; set; }
2023-04-11 00:22:09 +04:00
public List<Implementer> Implementers { get; set; }
2023-03-28 01:05:56 +04:00
2023-04-11 00:22:09 +04:00
private DataListSingleton()
2023-02-13 22:22:24 +04:00
{
Blanks = new List<Blank>();
Orders = new List<Order>();
Documents = new List<Document>();
2023-03-28 01:05:56 +04:00
Clients = new List<Client>();
2023-04-11 00:22:09 +04:00
Implementers = new List<Implementer>();
}
2023-02-13 22:22:24 +04:00
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}