35 lines
832 B
C#
35 lines
832 B
C#
using PlumbingRepairListImplement.Models;
|
|
|
|
namespace PlumbingRepairListImplement
|
|
{
|
|
internal class DataListSingleton
|
|
{
|
|
private static DataListSingleton? _instance;
|
|
|
|
public List<Component> Components { get; set; }
|
|
|
|
public List<Order> Orders { get; set; }
|
|
|
|
public List<Work> Works { get; set; }
|
|
|
|
public List<Shop> Shops { get; set; }
|
|
|
|
private DataListSingleton()
|
|
{
|
|
Components = new List<Component>();
|
|
Orders = new List<Order>();
|
|
Works = new List<Work>();
|
|
Shops = new List<Shop>();
|
|
}
|
|
|
|
public static DataListSingleton GetInstance()
|
|
{
|
|
if (_instance == null)
|
|
{
|
|
_instance = new DataListSingleton();
|
|
}
|
|
|
|
return _instance;
|
|
}
|
|
}
|
|
} |