コード例 #1
0
ファイル: PointsController.cs プロジェクト: armpending/GitFit
        public IHttpActionResult GetPoint(long id)
        {
            var b = psvc.GetPoint(id);

            if (b == null)
            {
                return(NotFound());
            }
            return(Ok(PointDto.FromPoint(b)));
        }