public ActionResult <Athlete> RemoveAthleteGuid(Int32 id) { var athlete = athleteService.RemoveAthleteGuid(id); if (athlete == null) { return(NotFound()); } return(athlete); }