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

42 lines
1.1 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 14:54:56 +04:00
public List<Implementer> Implementers { get; set; }
2024-05-03 10:54:09 +04:00
public List<Shop> Shops { get; set; }
2024-05-02 14:54:56 +04:00
2024-02-07 19:42:14 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Travels = new List<Travel>();
2024-05-02 14:54:56 +04:00
Clients = new List<Client>();
Implementers = new List<Implementer>();
2024-05-03 10:54:09 +04:00
Shops = new List<Shop>();
2024-05-02 14:54:56 +04:00
2024-02-07 19:42:14 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}