示例#1
0
        public ActionResult <Athlete> RemoveAthleteGuid(Int32 id)
        {
            var athlete = athleteService.RemoveAthleteGuid(id);

            if (athlete == null)
            {
                return(NotFound());
            }
            return(athlete);
        }