// Controllers/CheckoutController.cs
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
namespace CheckoutExample.Controllers
{
[ApiController]
[Route("api/[controller]")]
public class CheckoutController : ControllerBase
{
[HttpGet]
public IActionResult Get(string products, string coupon)
{
// Parse products
var productQuantities = new Dictionary