PlanTempusApp/PlanTempus.Application/Features/CashRegister/Components/PeriodRevenue/PeriodRevenueViewComponent.cs

16 lines
404 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>
2026-01-11 21:42:24 +01:00
/// ViewComponent for displaying period payment figures.
/// Shows system values vs. optional control values for different payment types.
/// </summary>
2026-01-11 21:42:24 +01:00
public class PeriodRevenueViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}