27 lines
726 B
C#
27 lines
726 B
C#
|
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; }
|
|||
|
private DataListSingleton()
|
|||
|
{
|
|||
|
Blanks = new List<Blank>();
|
|||
|
Orders = new List<Order>();
|
|||
|
Documents = new List<Document>();
|
|||
|
}
|
|||
|
public static DataListSingleton GetInstance()
|
|||
|
{
|
|||
|
if (_instance == null)
|
|||
|
{
|
|||
|
_instance = new DataListSingleton();
|
|||
|
}
|
|||
|
return _instance;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|