public IActionResult EditShelfSize(int?id) { if (id == null) { return(NotFound()); } var standardSize = ctx.FindStandardShelfSize(id); if (standardSize == null) { return(NotFound()); } return(View(standardSize)); }