diff --git a/HaWeb/Controllers/APIController.cs b/HaWeb/Controllers/APIController.cs index fd1fddf..7a65aa5 100644 --- a/HaWeb/Controllers/APIController.cs +++ b/HaWeb/Controllers/APIController.cs @@ -20,7 +20,7 @@ using Microsoft.AspNetCore.Http.Features; public class APIController : Controller { // DI - private ILibrary _lib; + private IHaDocumentWrappper _lib; private IReaderService _readerService; private readonly long _fileSizeLimit; private readonly string _targetFilePath; @@ -31,7 +31,7 @@ public class APIController : Controller { private static readonly FormOptions _defaultFormOptions = new FormOptions(); - public APIController(ILibrary lib, IReaderService readerService, IXMLService xmlService, IConfiguration config) { + public APIController(IHaDocumentWrappper lib, IReaderService readerService, IXMLService xmlService, IConfiguration config) { _lib = lib; _readerService = readerService; _xmlService = xmlService; diff --git a/HaWeb/Views/Shared/_Footer.cshtml b/HaWeb/Views/Shared/_Footer.cshtml index d30ef94..31a6a6a 100644 --- a/HaWeb/Views/Shared/_Footer.cshtml +++ b/HaWeb/Views/Shared/_Footer.cshtml @@ -10,9 +10,13 @@ -