PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantListImplement/DataListSingleton.cs
2024-05-04 22:30:27 +04:00

77 lines
2.2 KiB
C#

using AircraftPlantListImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantListImplement
{
/// <summary>
/// Класс для хранения списков классов-моделей (паттерн Singleton)
/// </summary>
public class DataListSingleton
{
/// <summary>
/// Ссылка на класс
/// </summary>
private static DataListSingleton? _instance;
/// <summary>
/// Список классов-моделей компонентов
/// </summary>
public List<Component> Components { get; set; }
/// <summary>
/// Список классов-моделей заказов
/// </summary>
public List<Order> Orders { get; set; }
/// <summary>
/// Список классов-моделей изделий
/// </summary>
public List<Plane> Planes { get; set; }
/// <summary>
/// Список классов-моделей клиентов
/// </summary>
public List<Client> Clients { get; set; }
/// <summary>
/// Список классов-моделей исполнителей
/// </summary>
public List<Implementer> Implementers { get; set; }
/// <summary>
/// Список классов-моделей писем
/// </summary>
public List<Message> Messages { get; set; }
/// <summary>
/// Конструктор
/// </summary>
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Planes = new List<Plane>();
Clients = new List<Client>();
Implementers = new List<Implementer>();
Messages = new List<Message>();
}
/// <summary>
/// Получить ссылку на класс
/// </summary>
/// <returns></returns>
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}