Files
LaDOSE/LaDOSE.Src/LaDOSE.Service/Interface/IGameService.cs
2018-10-06 14:16:42 +02:00

15 lines
307 B
C#

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);
}
}