public IActionResult GetProgressoes(string iso5)
 {
     if (!(string.IsNullOrWhiteSpace(iso5) && iso5.Length == 5)) // && iso5.Length == 5
     {
         IEnumerable <SelectListItem> progressoes = _progre.GetProgressoesComCarreira(iso5);
         return(Json(progressoes));
     }
     return(null);
 }