PlanTempusApp/PlanTempus.Application/Features/CashRegister/Components/ReconciliationTable/ReconciliationTableViewComponent.cs

16 lines
415 B
C#
Raw Normal View History

2026-01-11 21:42:24 +01:00
using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.CashRegister.Components;
/// <summary>
/// ViewComponent for the reconciliation table on the Cash Register list page.
/// Shows all reconciliations with action bar and SAF-T export.
/// </summary>
public class ReconciliationTableViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}