public LobbyController(
     IListLobbies listLobby,
     ICreateLobby createLobby,
     IIsKnown isKnown)
 {
     this.listLobby   = listLobby;
     this.createLobby = createLobby;
     this.isKnown     = isKnown;
 }
 public LobbyGameController(
     ILudoService ludoService,
     IIsKnown isKnown,
     IGetLobby getLobby,
     IJoinLobby joinLobby,
     IStartGame startGame,
     ILeaveLobby leaveLobby,
     IGetPlayerReady getPlayerReady,
     ISlotUser slotUser)
 {
     this.ludoService    = ludoService;
     this.isKnown        = isKnown;
     this.getLobby       = getLobby;
     this.joinLobby      = joinLobby;
     this.startGame      = startGame;
     this.leaveLobby     = leaveLobby;
     this.getPlayerReady = getPlayerReady;
     this.slotUser       = slotUser;
 }