using System; using System.IO; using System.Threading.Tasks; #if !NET8 using System.Web; using System.Web.Mvc; using System.Web.Security; #endif #if NET8 using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewEngines; #endif #if !NET8 using System.Collections.Generic; using System.Net; using System.Net.Http; using System.Security.Claims; #endif namespace Fab2ApprovalSystem.PdfGenerator; public class FakeView : IView { public void Render(ViewContext viewContext, TextWriter writer) { throw new NotImplementedException(); } #if NET8 string IView.Path => throw new NotImplementedException(); Task IView.RenderAsync(ViewContext context) => throw new NotImplementedException(); #endif }