AspNet5Localization.Controllers.BoxesController.Get C# (CSharp) 메소드

Get() 개인적인 메소드

private Get ( int id ) : IActionResult
id int
리턴 IActionResult
        public IActionResult Get(int id)
        {
            if (id == 0)
            {
                return NotFound(id);
            }

            return Ok(new Box() { Id = id, Height = 10, Length = 10, Width=10 });
        }