27 lines
746 B
C#
27 lines
746 B
C#
|
using CarRepairShopListImplement.Models;
|
|||
|
|
|||
|
namespace CarRepairShopListImplement
|
|||
|
{
|
|||
|
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; }
|
|||
|
private DataListSingleton()
|
|||
|
{
|
|||
|
Components = new List<Component>();
|
|||
|
Orders = new List<Order>();
|
|||
|
Repairs = new List<Repair>();
|
|||
|
}
|
|||
|
public static DataListSingleton GetInstance()
|
|||
|
{
|
|||
|
if (_instance == null)
|
|||
|
{
|
|||
|
_instance = new DataListSingleton();
|
|||
|
}
|
|||
|
return _instance;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|