PIbd-23_Starostin_I.K._Ship.../ShipyardListImplement/DataListSingleton.cs

26 lines
752 B
C#

using ShipyardListImplement.Models;
namespace ShipyardListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Ship> Ships { get; set; }
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Ships = new List<Ship>();
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}