using SportsDivision.Domain.Entities; namespace SportsDivision.Domain.Interfaces; public interface IHighJumpHeightRepository : IRepository { Task> GetByTournamentEventLevelAsync(int tournamentEventLevelId); Task GetWithAttemptsAsync(int heightId); }