2024-04-17 09:22:08 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using RenovationWorkListImplement.Models;
|
|
|
|
|
|
|
|
|
|
namespace RenovationWorkListImplement
|
|
|
|
|
{
|
|
|
|
|
public class DataListSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataListSingleton? _instance;
|
|
|
|
|
public List<Component> Components { get; set; }
|
|
|
|
|
public List<Order> Orders { get; set; }
|
|
|
|
|
public List<Repair> Repairs { get; set; }
|
2024-05-25 21:23:11 +04:00
|
|
|
|
public List<Client> Clients { get; set; }
|
2024-05-25 21:25:00 +04:00
|
|
|
|
public List<Implementer> Implementers { get; set; }
|
2024-04-17 09:22:08 +04:00
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Components = new List<Component>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Repairs = new List<Repair>();
|
2024-05-25 21:23:11 +04:00
|
|
|
|
Clients = new List<Client>();
|
2024-05-25 21:25:00 +04:00
|
|
|
|
Implementers = new List<Implementer>();
|
2024-04-17 09:22:08 +04:00
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|