10 lines
321 B
C#
10 lines
321 B
C#
using SportsDivision.Domain.Entities;
|
|
|
|
namespace SportsDivision.Domain.Interfaces;
|
|
|
|
public interface IHighJumpHeightRepository : IRepository<HighJumpHeight>
|
|
{
|
|
Task<IEnumerable<HighJumpHeight>> GetByTournamentEventLevelAsync(int tournamentEventLevelId);
|
|
Task<HighJumpHeight?> GetWithAttemptsAsync(int heightId);
|
|
}
|