PIbd-23_Ivanov_V.N._Pizzeria/Pizzeria/PizzeriaListImplement/DataListSingleton.cs

36 lines
934 B
C#
Raw Normal View History

2024-02-01 10:43:41 +04:00
using PizzeriaListImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Pizza> Pizzas { get; set; }
2024-02-17 18:51:42 +04:00
public List<Shop> Shops { get; set; }
2024-02-01 10:43:41 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Pizzas = new List<Pizza>();
2024-02-17 18:51:42 +04:00
Shops = new List<Shop>();
2024-02-01 10:43:41 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}