PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopListImplement/DataListSingleton.cs

34 lines
940 B
C#
Raw Normal View History

2024-02-08 17:08:13 +04:00
using FlowerShopListImplement.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopListImplement
{
public class DataListSingleton
{
private static DataListSingleton? _instance;
public List<Component> Components { get; set; }
public List<Order> Orders { get; set; }
public List<Flower> Flowers { get; set; }
2024-02-14 22:27:41 +04:00
public List<Shop> Shops { get; set; }
2024-02-08 17:08:13 +04:00
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Flowers = new List<Flower>();
2024-02-14 22:27:41 +04:00
Shops = new List<Shop>();
2024-02-08 17:08:13 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
}
}