2023-02-19 17:07:50 +04:00
|
|
|
|
using ConfectioneryListImplement.Models;
|
|
|
|
|
using System;
|
2023-02-06 11:15:27 +04:00
|
|
|
|
using System.Collections.Generic;
|
2023-02-19 17:07:50 +04:00
|
|
|
|
using System.ComponentModel;
|
2023-02-06 11:15:27 +04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryListImplement
|
|
|
|
|
{
|
|
|
|
|
public class DataListSingleton
|
|
|
|
|
{
|
2023-02-19 17:07:50 +04:00
|
|
|
|
private static DataListSingleton? _instance;
|
|
|
|
|
public List<Ingredient> Ingredients { get; set; }
|
|
|
|
|
public List<Order> Orders { get; set; }
|
|
|
|
|
public List<Pastry> Pastries { get; set; }
|
|
|
|
|
private DataListSingleton()
|
|
|
|
|
{
|
|
|
|
|
Ingredients = new List<Ingredient>();
|
|
|
|
|
Orders = new List<Order>();
|
|
|
|
|
Pastries = new List<Pastry>();
|
|
|
|
|
}
|
|
|
|
|
public static DataListSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (_instance == null)
|
|
|
|
|
{
|
|
|
|
|
_instance = new DataListSingleton();
|
|
|
|
|
}
|
|
|
|
|
return _instance;
|
|
|
|
|
}
|
2023-02-06 11:15:27 +04:00
|
|
|
|
}
|
|
|
|
|
}
|