Skip to content

Instantly share code, notes, and snippets.

@jonhilt
Created October 31, 2018 19:58
Show Gist options
  • Save jonhilt/311a298835057a644c9f9648f1d1535d to your computer and use it in GitHub Desktop.
Save jonhilt/311a298835057a644c9f9648f1d1535d to your computer and use it in GitHub Desktop.
public class OrderController : Controller {
// rest of code omitted
public IActionResult ById(string id){
var order = _orders.Find(id);
if(order == null){
return NotFound();
}
return Ok(order);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment