mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
12 lines
565 B
C#
12 lines
565 B
C#
namespace HaWeb.XMLParser;
|
|
using System.Xml.Linq;
|
|
using Microsoft.AspNetCore.Mvc.ModelBinding;
|
|
|
|
public interface IXMLService {
|
|
public IXMLRoot? GetRoot(string name);
|
|
public List<IXMLRoot>? GetRoots();
|
|
public Task<List<XMLRootDocument>?> ProbeHamannFile(XDocument document, ModelStateDictionary ModelState);
|
|
public Task UpdateAvailableFiles(XMLRootDocument doc, string basefilepath, ModelStateDictionary ModelState);
|
|
public Dictionary<string, List<XMLRootDocument>> GetUsed();
|
|
public List<XMLRootDocument>? GetAvailableFiles(string prefix);
|
|
} |