[HttpGet("{id}")] public IActionResult Get(string id) { Customer cust = db.Customers.Find(id); if (cust == null) { return NotFound(); } ...
確定! 回上一頁