2024-02-12 12:46:44 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2024-02-26 14:27:55 +04:00
|
|
|
|
using TypographyListImplement.Models;
|
2024-02-12 12:46:44 +04:00
|
|
|
|
|
2024-02-26 14:27:55 +04:00
|
|
|
|
namespace TypographyListImplement
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
public class DataListSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataListSingleton? _instance;
|
|
|
|
|
public List<Component> Components { get; set; }
|
|
|
|
|
public List<Order> Orders { get; set; }
|
2024-02-26 14:27:55 +04:00
|
|
|
|
public List<Printed> Printeds { get; set; }
|
2024-04-22 06:54:28 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
|
|
|
|
public List<Implementer> Implementers { get; set; }
|
2024-05-05 20:32:54 +04:00
|
|
|
|
public List<MessageInfo> Messages { get; set; }
|
2024-02-12 12:46:44 +04:00
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
2024-02-26 14:27:55 +04:00
|
|
|
|
Printeds = new List<Printed>();
|
2024-04-22 06:54:28 +04:00
|
|
|
|
Clients = new List<Client>();
|
|
|
|
|
Implementers = new List<Implementer>();
|
2024-05-05 20:32:54 +04:00
|
|
|
|
Messages = new List<MessageInfo>();
|
2024-02-12 12:46:44 +04:00
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|