36 lines
958 B
C#
36 lines
958 B
C#
using LawFirmListImplements.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LawFirmListImplements
|
|
{
|
|
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; }
|
|
public List<Shop> Shops { get; set; }
|
|
private DataListSingleton()
|
|
{
|
|
Blanks = new List<Blank>();
|
|
Orders = new List<Order>();
|
|
Documents = new List<Document>();
|
|
Shops = new List<Shop>();
|
|
}
|
|
public static DataListSingleton GetInstance()
|
|
{
|
|
if (_instance == null)
|
|
{
|
|
_instance = new DataListSingleton();
|
|
}
|
|
return _instance;
|
|
}
|
|
|
|
}
|
|
}
|