PlanTempusApp/PlanTempus.Application/Features/Kasse/Components/KasseKontanter/KasseKontanterViewComponent.cs

16 lines
385 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Kasse.Components;
/// <summary>
/// ViewComponent for cash calculation section.
/// Handles starting balance, payouts, bank deposits, and actual cash count.
/// </summary>
public class KasseKontanterViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}