namespace HaWeb.XMLParser; using System.Xml.Linq; using Microsoft.AspNetCore.Mvc.ModelBinding; public interface IXMLService { public List? GetRoots(); public List? ProbeHamannFile(XDocument document, ModelStateDictionary ModelState); }