PIbd-21_Markov_D.P._LawFirm/LawFirm/LawFirmListImplement/DataListSingleton.cs

30 lines
811 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 10:24:47 +04:00
public List<Shop> Shops { get; set; }
2023-02-13 22:22:24 +04:00
private DataListSingleton()
{
Blanks = new List<Blank>();
Orders = new List<Order>();
Documents = new List<Document>();
2023-03-28 10:24:47 +04:00
Shops = new List<Shop>();
2023-02-13 22:22:24 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}