Initial Commit

This commit is contained in:
2026-03-01 15:14:42 -04:00
commit f60174625e
377 changed files with 98166 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using SportsDivision.Domain.Entities;
namespace SportsDivision.Domain.Interfaces;
public interface IHighJumpHeightRepository : IRepository<HighJumpHeight>
{
Task<IEnumerable<HighJumpHeight>> GetByTournamentEventLevelAsync(int tournamentEventLevelId);
Task<HighJumpHeight?> GetWithAttemptsAsync(int heightId);
}