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.
ApiBowlingProject/Sources/BowlingRepository/Interface/IJoueurRepository.cs

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);
}