public ActionResult <Athlete> VerifyAthleteByGuid(String guid) { var athleteGuid = athleteService.VerifyAthleteByGuid(guid); if (athleteGuid != null) { return(Ok(athleteGuid)); } else { return(NotFound()); } }