28 lines
483 B
C#
28 lines
483 B
C#
|
using ProjectGSM.Entities;
|
|||
|
|
|||
|
namespace ProjectGSM.Repositories.Implementations;
|
|||
|
|
|||
|
public class CourtRepository : ICourtRepository
|
|||
|
{
|
|||
|
public IEnumerable<Court> ReadCourts()
|
|||
|
{
|
|||
|
return [];
|
|||
|
}
|
|||
|
|
|||
|
public Court ReadCourtById(int id)
|
|||
|
{
|
|||
|
return Court.CreateEntity(0, String.Empty, String.Empty);
|
|||
|
}
|
|||
|
|
|||
|
public void CreateCourt(Court court)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void UpdateCourt(Court court)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void DeleteCourt(int id)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|