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.
17 lines
490 B
17 lines
490 B
using System;
|
|
using BowlingEF.Entities;
|
|
|
|
namespace BowlingService.Interfaces
|
|
{
|
|
public interface IpartieService
|
|
{
|
|
public Task<bool> Add(PartieEntity _partie);
|
|
public Task<bool> Delete(PartieEntity _partie);
|
|
public Task<bool> Update(PartieEntity _partie);
|
|
public Task<IEnumerable<PartieDTO>> GetAll();
|
|
public Task<IEnumerable<PartieEntity>> GetAllWithDate(DateTime date);
|
|
public Task<PartieEntity> GetDataWithName(string nom);
|
|
}
|
|
}
|
|
|