using Hcs.WebApp.Data.Hcs; using Microsoft.EntityFrameworkCore; namespace Hcs.WebApp.Services { public class FileToParseService(IDbContextFactory factory) : HcsServiceBase(factory) { public async Task> GetAllFilesToParseAsync() { using var context = GetNewContext(); return await context.FilesToParse.ToListAsync(); } } }