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