Part 3 - EnumTransactionController
[ApiController] | |
[Route("[controller]")] | |
public class EnumTransactionController | |
{ | |
[HttpGet] | |
[Route("code")] | |
public string Get(PaymentType paymentType) | |
{ | |
return paymentType == PaymentType.CreditCard ? "CC" : "DC"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment