scope-cli 0.9.2

Code intelligence CLI for LLM coding agents — structural navigation, dependency graphs, and semantic search without reading full source files
using CSharpSimple.Payments;

namespace CSharpSimple.Controllers
{
    public class OrderController
    {
        private readonly IPaymentService _paymentService;

        public OrderController(IPaymentService paymentService)
        {
            _paymentService = paymentService;
        }

        public async Task Checkout(decimal amount, string userId)
        {
            await _paymentService.ProcessPayment(amount, userId);
        }
    }
}