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