10 lines
281 B
C#
10 lines
281 B
C#
using ProjectRacing.Entities;
|
|
namespace ProjectRacing.Repositories;
|
|
public interface IJockeyRepository
|
|
{
|
|
IEnumerable<Jockey> GetJockeys();
|
|
Jockey GetJockeyById(int id);
|
|
void CreateJockey(Jockey jockey);
|
|
void UpdateJockey(int id);
|
|
void DeleteJockey(int id);
|
|
} |