- Add GenerateSingleReport() method to PdfReportService for individual CV reports - PDF includes: score header, employment verification table, timeline analysis, gaps/overlaps sections, and color-coded flags (critical/warning/info) - Update Report.razor to use PdfReportService instead of JSON serialization - Add TrueCV.Web.Services to _Imports.razor Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
751 B
Plaintext
22 lines
751 B
Plaintext
@using System.IO
|
|
@using System.Net.Http
|
|
@using System.Net.Http.Json
|
|
@using System.Security.Claims
|
|
@using Microsoft.AspNetCore.Authorization
|
|
@using Microsoft.AspNetCore.Components.Authorization
|
|
@using Microsoft.AspNetCore.Components.Forms
|
|
@using Microsoft.AspNetCore.Components.Routing
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
|
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
@using Microsoft.Extensions.Logging
|
|
@using Microsoft.JSInterop
|
|
@using TrueCV.Web
|
|
@using TrueCV.Web.Components
|
|
@using TrueCV.Web.Components.Shared
|
|
@using TrueCV.Web.Services
|
|
@using TrueCV.Application.Interfaces
|
|
@using TrueCV.Application.DTOs
|
|
@using TrueCV.Application.Models
|
|
@using TrueCV.Domain.Enums
|