Initial Commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using SportsDivision.Domain.Entities;
|
||||
|
||||
namespace SportsDivision.Domain.Interfaces;
|
||||
|
||||
public interface IHeatLaneRepository : IRepository<HeatLane>
|
||||
{
|
||||
Task<IEnumerable<HeatLane>> GetByHeatAsync(int heatId);
|
||||
Task<HeatLane?> GetWithDetailsAsync(int heatLaneId);
|
||||
}
|
||||
Reference in New Issue
Block a user