namespace HaWeb.FileHelpers; using HaDocument.Interfaces; using Microsoft.AspNetCore.Mvc.ModelBinding; using HaXMLReader.Interfaces; public interface IHaDocumentWrappper { public ILibrary ResetLibrary(); public ILibrary? SetLibrary(string filepath, ModelStateDictionary ModelState); public ILibrary GetLibrary(); public int GetStartYear(); public int GetEndYear(); public void SetStartEndYear(int start, int end); }