Created
October 12, 2017 13:17
-
-
Save dcomartin/782ad05e27d613484eb4e1d2fe189c39 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Route("api/[controller]")] | |
public class CustomersController : Controller | |
{ | |
private readonly CustomerRepository _customerRepository; | |
public CustomersController() | |
{ | |
_customerRepository = new CustomerRepository(); | |
} | |
// GET api/values/5 | |
[HttpGet("{id}")] | |
public IActionResult Get(int id) | |
{ | |
// Returns null if customer doesn't exist. | |
var customer = _customerRepository.GetOptionById(id); | |
return customer.Match<IActionResult>( | |
some: value => new JsonResult(new | |
{ | |
CustomerId = value.CustomerId, | |
Name = value.Name | |
}), | |
none: () => new StatusCodeResult(404)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment