[HttpGet("{id?}")] public IActionResult fff(int? id) { if (id == null) return Ok("null"); return Ok(id); }