PlanTempusApp/PlanTempus.Application/Features/Kasse/Components/KasseTable/KasseTableViewComponent.cs

16 lines
391 B
C#
Raw Normal View History

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