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.
12 lines
328 B
12 lines
328 B
using BowlingEF.Entities;
|
|
|
|
namespace BowlingRepository.Interface;
|
|
|
|
public interface IEquipeRepository
|
|
{
|
|
public void Add(EquipeEntity equipe);
|
|
public void Update(EquipeEntity equipe);
|
|
public void Delete(EquipeEntity equipe);
|
|
public Task GetEquipe(int id);
|
|
public IEnumerable<EquipeEntity> GetAllEquipes();
|
|
} |