Skip to content

Instantly share code, notes, and snippets.

@jonhilt
Created October 31, 2018 19:59
Show Gist options
  • Save jonhilt/f8121fe2873d217b2c0514d6bfa68bcf to your computer and use it in GitHub Desktop.
Save jonhilt/f8121fe2873d217b2c0514d6bfa68bcf 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);
return View(order);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment