16 lines
385 B
C#
16 lines
385 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|