示例#1
0
        public ActionResult <Point> GetPoint(int id)
        {
            var point = pointService.Get(id);

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

            return(point);
        }