15 lines
383 B
C#
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();
|
|
}
|
|
}
|