PIbd-23_Abazov_A.A._Confect.../Confectionery/ConfectioneryListImplement/DataListSingleton.cs

33 lines
897 B
C#
Raw Normal View History

using ConfectioneryListImplement.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryListImplement
{
public class DataListSingleton
{
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;
}
}
}