PlanTempusApp/PlanTempus.Application/Features/CashRegister/Components/CashDifference/CashDifferenceViewComponent.cs
2026-01-11 21:42:24 +01:00

15 lines
383 B
C#

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