2023-03-06 09:07:54 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using TravelCompanyFileImplement.Models;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace TravelCompanyFileImplement
|
|
|
|
|
{
|
|
|
|
|
public class DataFileSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataFileSingleton? instance;
|
|
|
|
|
private readonly string ConditionFileName = "Condition.xml";
|
|
|
|
|
private readonly string OrderFileName = "Order.xml";
|
|
|
|
|
private readonly string ProductFileName = "Product.xml";
|
2023-04-28 00:02:22 +04:00
|
|
|
|
private readonly string ClientFileName = "Client.xml";
|
2023-04-28 08:35:07 +04:00
|
|
|
|
private readonly string ImplementerFileName = "Implementer.xml";
|
2023-03-06 09:07:54 +04:00
|
|
|
|
public List<Condition> Conditions { get; private set; }
|
|
|
|
|
public List<Order> Orders { get; private set; }
|
|
|
|
|
public List<Travel> Travels { get; private set; }
|
2023-04-28 00:02:22 +04:00
|
|
|
|
public List<Client> Clients { get; private set; }
|
2023-04-28 08:35:07 +04:00
|
|
|
|
public List<Implementer> Implementers { get; private set; }
|
|
|
|
|
public static DataFileSingleton GetInstance()
|
2023-03-06 09:07:54 +04:00
|
|
|
|
{
|
|
|
|
|
if (instance == null)
|
|
|
|
|
{
|
|
|
|
|
instance = new DataFileSingleton();
|
|
|
|
|
}
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
public void SaveConditions() => SaveData(Conditions, ConditionFileName,"Conditions", x => x.GetXElement);
|
|
|
|
|
public void SaveTravels() => SaveData(Travels, ProductFileName, "Travels", x => x.GetXElement);
|
|
|
|
|
public void SaveOrders() => SaveData(Orders, OrderFileName, "Orders", x => x.GetXElement);
|
2023-04-28 00:02:22 +04:00
|
|
|
|
public void SaveClients() => SaveData(Clients, ClientFileName, "Clients", x => x.GetXElement);
|
2023-04-28 08:35:07 +04:00
|
|
|
|
public void SaveImplementers() => SaveData(Implementers, ImplementerFileName, "Implementers", x => x.GetXElement);
|
2023-03-06 09:07:54 +04:00
|
|
|
|
private DataFileSingleton()
|
|
|
|
|
{
|
|
|
|
|
Conditions = LoadData(ConditionFileName, "Condition", x => Condition.Create(x)!)!;
|
|
|
|
|
Travels = LoadData(ProductFileName, "Travel", x => Travel.Create(x)!)!;
|
|
|
|
|
Orders = LoadData(OrderFileName, "Order", x => Order.Create(x)!)!;
|
2023-04-28 00:02:22 +04:00
|
|
|
|
Clients = LoadData(ClientFileName, "Client", x => Client.Create(x)!)!;
|
2023-04-28 08:35:07 +04:00
|
|
|
|
Implementers = LoadData(ImplementerFileName, "Implementer", x => Implementer.Create(x)!)!;
|
2023-03-06 09:07:54 +04:00
|
|
|
|
}
|
|
|
|
|
private static List<T>? LoadData<T>(string filename, string xmlNodeName,
|
|
|
|
|
Func<XElement, T> selectFunction)
|
|
|
|
|
{
|
|
|
|
|
if (File.Exists(filename))
|
|
|
|
|
{
|
|
|
|
|
return
|
|
|
|
|
XDocument.Load(filename)?.Root?.Elements(xmlNodeName)?.Select(selectFunction)?.ToList();
|
|
|
|
|
}
|
|
|
|
|
return new List<T>();
|
|
|
|
|
}
|
|
|
|
|
private static void SaveData<T>(List<T> data, string filename, string xmlNodeName, Func<T, XElement> selectFunction)
|
|
|
|
|
{
|
|
|
|
|
if (data != null)
|
|
|
|
|
{
|
|
|
|
|
new XDocument(new XElement(xmlNodeName,
|
|
|
|
|
data.Select(selectFunction).ToArray())).Save(filename);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|