36 lines
968 B
C#
36 lines
968 B
C#
using FurnitureAssemblyListImplement.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FurnitureAssemblyListImplement
|
|
{
|
|
public class DataListSingleton
|
|
{
|
|
private static DataListSingleton? _instance;
|
|
public List<Component> Components { get; set; }
|
|
public List<Order> Orders { get; set; }
|
|
public List<Furniture> Furnitures { get; set; }
|
|
public List<Shop> Shops { get; set; }
|
|
|
|
private DataListSingleton()
|
|
{
|
|
Components = new List<Component>();
|
|
Orders = new List<Order>();
|
|
Furnitures = new List<Furniture>();
|
|
Shops = new List<Shop>();
|
|
}
|
|
public static DataListSingleton GetInstance()
|
|
{
|
|
if (_instance == null)
|
|
{
|
|
_instance = new DataListSingleton();
|
|
}
|
|
return _instance;
|
|
}
|
|
|
|
}
|
|
}
|