2024-03-12 21:53:02 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
using AbstractLawFirmFileImplement.Models;
|
|
|
|
|
|
|
|
|
|
namespace AbstractLawFirmFileImpliment
|
|
|
|
|
{
|
|
|
|
|
internal class DataFileSingleton
|
|
|
|
|
{
|
|
|
|
|
private static DataFileSingleton? instance;
|
|
|
|
|
private readonly string ComponentFileName = "Component.xml";
|
|
|
|
|
private readonly string OrderFileName = "Order.xml";
|
2024-03-25 20:21:59 +04:00
|
|
|
|
private readonly string DocumentFileName = "Document.xml";
|
2024-03-12 21:53:02 +04:00
|
|
|
|
public List<Component> Components { get; private set; }
|
|
|
|
|
public List<Order> Orders { get; private set; }
|
|
|
|
|
public List<Document> Documents { get; private set; }
|
|
|
|
|
public static DataFileSingleton GetInstance()
|
|
|
|
|
{
|
|
|
|
|
if (instance == null)
|
|
|
|
|
{
|
|
|
|
|
instance = new DataFileSingleton();
|
|
|
|
|
}
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
public void SaveComponents() => SaveData(Components, ComponentFileName,
|
|
|
|
|
"Components", x => x.GetXElement);
|
2024-03-25 20:21:59 +04:00
|
|
|
|
public void SaveDocuments() => SaveData(Documents, DocumentFileName,
|
2024-03-13 01:12:49 +04:00
|
|
|
|
"Documents", x => x.GetXElement);
|
|
|
|
|
public void SaveOrders() => SaveData(Orders, OrderFileName,
|
|
|
|
|
"Orders", x => x.GetXElement);
|
2024-03-12 21:53:02 +04:00
|
|
|
|
private DataFileSingleton()
|
|
|
|
|
{
|
2024-03-13 01:12:49 +04:00
|
|
|
|
Components = LoadData(ComponentFileName, "Component", x => Component.Create(x)!)!;
|
2024-03-25 20:21:59 +04:00
|
|
|
|
Documents = LoadData(DocumentFileName, "Document", x => Document.Create(x)!)!;
|
2024-03-13 01:12:49 +04:00
|
|
|
|
Orders = LoadData(OrderFileName, "Order", x => Order.Create(x)!)!;
|
|
|
|
|
|
2024-03-12 21:53:02 +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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|