Test Many to many
This commit is contained in:
15
LaDOSE.Src/LaDOSE.Service/Interface/IGameService.cs
Normal file
15
LaDOSE.Src/LaDOSE.Service/Interface/IGameService.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using LaDOSE.Entity;
|
||||
|
||||
namespace LaDOSE.Business.Interface
|
||||
{
|
||||
public interface IGameService
|
||||
{
|
||||
|
||||
IEnumerable<Game> GetAll();
|
||||
Game GetById(int id);
|
||||
Game Create(Game game);
|
||||
bool Update(Game game);
|
||||
void Delete(int id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user