PlanTempusApp/PlanTempus.Application/Features/Kasse/Components/KasseDifference/KasseDifferenceViewComponent.cs

16 lines
377 B
C#
Raw Normal View History

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