using AutoMapper; using ECMJobRunner.Domain.Entities; using ECMJobRunner.Domain.Interfaces; using ECMJobRunner.Infrastructure.Data; namespace ECMJobRunner.Infrastructure.Repositories { /// /// CfgProfile repository implementation /// public class CfgProfileRepository : Repository, ICfgProfileRepository { /// /// Constructor /// public CfgProfileRepository(JobRunnerDbContext context, IMapper mapper) : base(context, mapper) { } // Entity-specific methods can be added here in the future } }