using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.CashRegister.Components; /// /// ViewComponent for displaying the cash difference. /// Shows positive/negative/neutral states with color coding. /// public class CashDifferenceViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }