public async Task <IActionResult> RecommendedLaneAddOrUpdate(RecommendedLaneEntity lane)
 {
     try
     {
         return(Ok(JsonConvert.SerializeObject(await _championsRepository.RecommendedLaneAddOrUpdate(lane.ID, lane.LANE))));
     }
     catch (Exception ex)
     {
         return(StatusCode(StatusCodes.Status500InternalServerError,
                           "Service temporary and not available" + ex.Message));
     }
 }