示例#1
0
        public ActionResult <Athlete> VerifyAthleteByGuid(String guid)
        {
            var athleteGuid = athleteService.VerifyAthleteByGuid(guid);

            if (athleteGuid != null)
            {
                return(Ok(athleteGuid));
            }
            else
            {
                return(NotFound());
            }
        }