16 lines
399 B
C#
16 lines
399 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Kasse.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ViewComponent for displaying today's payment figures.
|
||
|
|
/// Shows system values vs. optional control values for different payment types.
|
||
|
|
/// </summary>
|
||
|
|
public class KasseDagensTalViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
}
|