using Microsoft.EntityFrameworkCore; using ComplianceNFs.Core.Entities; namespace ComplianceNFs.Infrastructure.Repositories { public class ComplianceNFsDbContext(DbContextOptions options) : DbContext(options) { public DbSet EnergyInvoices { get; set; } // Add other DbSets as needed (e.g., BuyingRecord, etc.) } }