Skip to content
Snippets Groups Projects
Commit c1db0c15 authored by Marie ROUSSEL's avatar Marie ROUSSEL
Browse files

Ajout NavalWar.Business et dépendances, mais il y a des erreurs à corriger...

Ajout NavalWar.Business et dépendances, mais il y a des erreurs à corriger mais il y en a moins qu'avant
parent 79c35f22
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,12 @@ namespace NavalWar.API.Controllers
public class GameAreaController : ControllerBase
{
private GameArea _area = new GameArea();
private readonly IGameService _gameService;
public GameArea AreaController(IgameService gameService)
{
_gameService = gameService;
}
// GET: api/<GameAreaController>
[HttpGet]
......
namespace NavalWar.Business
{
public class GameService
public class GameService : IGameService
{
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment