PlanTempusApp/PlanTempus.Application/Features/CashRegister/Components/CashDifference/CashDifferenceViewComponent.cs

16 lines
383 B
C#
Raw Normal View History

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