public ActionResult GetFavouriteByPlayerId(int playerId)
 {
     try
     {
         return(Ok(favouriteService.GetFavouriteByPlayerId(playerId)));
     }
     catch (FavouritePlayerNotFoundException favException)
     {
         return(NotFound(favException.Message));
     }
 }