public ActionResult <Point> GetPoint(int id) { var point = pointService.Get(id); if (point == null) { return(NotFound()); } return(point); }