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

37 lines
998 B
C#
Raw Permalink 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-04-06 18:45:56 +04:00
public List<Client> Clients { get; set; }
2024-04-22 20:09:58 +04:00
public List<Implementer> Implementers { get; set; }
2024-04-06 18:45:56 +04:00
2024-04-22 20:09:58 +04:00
private DataListSingleton()
2024-02-08 17:08:13 +04:00
{
Components = new List<Component>();
Orders = new List<Order>();
Flowers = new List<Flower>();
2024-04-06 18:45:56 +04:00
Clients = new List<Client>();
2024-02-08 17:08:13 +04:00
}
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
2024-04-06 18:45:56 +04:00
2024-02-08 17:08:13 +04:00
}
}