AspNet5Localization.Controllers.BoxesController.Get C# (CSharp) Method

Get() private method

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

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