Files
ECMJobRunner/ECMJobRunner.Domain/Interfaces/IProfileHistoryRepository.cs
TekH 3e007ccfeb Refactor domain layer to follow Clean Architecture
Updated the domain layer to align with Clean Architecture principles:
- Removed Entity Framework dependencies from the project.
- Updated AGENTS.md to document the new architecture.
- Introduced repository interfaces for data access abstraction.
- Added a generic IRepository interface for CRUD operations.
- Implemented entity-specific repositories for Profile, ProfileSqlJob, and ProfileHistory.
- Ensured the domain layer is infrastructure-independent with pure POCOs.
- Updated project structure and documentation for clarity.
2026-07-09 13:33:39 +02:00

13 lines
332 B
C#

using ECMJobRunner.Domain.Entities;
namespace ECMJobRunner.Domain.Interfaces
{
/// <summary>
/// Repository interface for ProfileHistory entity
/// </summary>
public interface IProfileHistoryRepository : IRepository<ProfileHistory>
{
// Add custom ProfileHistory-specific methods here if needed
}
}