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.
18 lines
490 B
18 lines
490 B
using System;
|
|
using BowlingEF.Entities;
|
|
|
|
namespace BowlingRepository.Interface
|
|
{
|
|
public interface IpartieRepository
|
|
{
|
|
public Task<bool> Add(PartieEntity _partie);
|
|
public Task<bool> Delete(PartieEntity _partie);
|
|
public Task<bool> Update(PartieEntity _partie);
|
|
public Task<List<PartieEntity>> GetAll();
|
|
public Task<IEnumerable<PartieEntity>> GetAllWithDate(DateTime date);
|
|
public Task<PartieEntity> GetDataWithName(string nom);
|
|
|
|
}
|
|
}
|
|
|