16 lines
369 B
C#
16 lines
369 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Kasse.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ViewComponent for daily reconciliation info.
|
||
|
|
/// Shows period, register, and employee information.
|
||
|
|
/// </summary>
|
||
|
|
public class KasseDagsoplysningerViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
}
|