using Hcs.WebApp.Data.Hcs; using Microsoft.EntityFrameworkCore; namespace Hcs.WebApp.Services { public abstract class HcsServiceBase(IDbContextFactory factory) { private readonly IDbContextFactory factory = factory; public HcsDbContext GetNewContext() { return factory.CreateDbContext(); } } }