PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyListImplement/DataListSingleton.cs

36 lines
1.0 KiB
C#
Raw Normal View History

2024-02-07 19:42:14 +04:00
using TravelCompanyListImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyListImplement
{
internal class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Travel> Travels { get; set; }
2024-04-18 16:34:54 +04:00
public List<Client> Clients { get; set; }
2024-05-02 01:08:11 +04:00
public List<Implementer> Implementers { get; set; }
2024-02-07 19:42:14 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Travels = new List<Travel>();
2024-04-18 16:34:54 +04:00
Clients = new List<Client>();
2024-05-02 01:08:11 +04:00
Implementers = new List<Implementer>();
2024-02-07 19:42:14 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}