42 lines
1.1 KiB
C#
Raw Normal View History

2024-02-08 16:08:13 +03: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 21:27:41 +03:00
public List<Shop> Shops { 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; }
public List<MessageInfo> Messages { get; set; }
2024-04-06 18:45:56 +04:00
2024-04-22 20:09:58 +04:00
private DataListSingleton()
2024-02-08 16:08:13 +03:00
{
Components = new List<Component>();
Orders = new List<Order>();
Flowers = new List<Flower>();
2024-02-14 21:27:41 +03:00
Shops = new List<Shop>();
2024-04-06 18:45:56 +04:00
Clients = new List<Client>();
Messages = new List<MessageInfo>();
}
2024-02-08 16:08:13 +03:00
public static DataListSingleton GetInstance()
{
if (_instance == null)
{
_instance = new DataListSingleton();
}
return _instance;
}
2024-04-06 18:45:56 +04:00
2024-02-08 16:08:13 +03:00
}
}