Initial Commit
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user