2023-01-29 18:10:27 +04:00
|
|
|
|
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; }
|
2023-03-25 10:30:54 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
2023-04-09 09:41:20 +04:00
|
|
|
|
public List<Implementer> Implementers { get; set; }
|
2023-01-29 18:10:27 +04:00
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Furnitures = new List<Furniture>();
|
2023-03-25 10:30:54 +04:00
|
|
|
|
Clients = new List<Client>();
|
2023-04-09 09:41:20 +04:00
|
|
|
|
Implementers = new List<Implementer>();
|
2023-01-29 18:10:27 +04:00
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|