public async Task <IActionResult> RoleList()
 {
     try
     {
         return(Ok(JsonConvert.SerializeObject(await _championsRepository.RoleList())));
     }
     catch (Exception)
     {
         return(StatusCode(StatusCodes.Status500InternalServerError,
                           "Service temporary and not available"));
     }
 }