2023-02-19 11:27:59 +04:00
|
|
|
|
using PrecastConcretePlantListImplement.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantListImplement
|
|
|
|
|
{
|
|
|
|
|
public class DataListSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataListSingleton? _instance;
|
|
|
|
|
public List<Component> Components { get; set; }
|
|
|
|
|
public List<Order> Orders { get; set; }
|
|
|
|
|
public List<Reinforced> Reinforceds { get; set; }
|
2023-04-05 00:55:08 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
2023-04-28 22:24:51 +04:00
|
|
|
|
public List<Implementer> Implementers { get; set; }
|
2023-04-21 04:43:43 +04:00
|
|
|
|
public List<Shop> Shops { get; set; }
|
2023-02-19 11:27:59 +04:00
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Reinforceds = new List<Reinforced>();
|
2023-04-05 00:55:08 +04:00
|
|
|
|
Clients = new List<Client>();
|
2023-04-28 22:24:51 +04:00
|
|
|
|
Implementers = new List<Implementer>();
|
2023-04-21 04:43:43 +04:00
|
|
|
|
Shops = new List<Shop>();
|
2023-02-19 11:27:59 +04:00
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|