public IActionResult Get(int id) { var item = _itemDao.Find(id); if (item == null) { return(NotFound()); } return(Ok(item)); }