You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
410 B
13 lines
410 B
using BowlingEF.Entities;
|
|
|
|
namespace BowlingRepository.Interface;
|
|
|
|
public interface IJoueurRepository
|
|
{
|
|
public Task<bool> Add(JoueurEntity joueur);
|
|
public Task<bool> Delete(long id);
|
|
public Task<bool> Update(JoueurEntity joueur);
|
|
public Task<JoueurEntity> GetJoueur(long id);
|
|
public Task<IEnumerable<JoueurEntity>> GetAllJoueur();
|
|
public Task<JoueurEntity> GetJoueurByNom(string nom);
|
|
} |