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