PlanTempusApp/PlanTempus.Application/Features/Kasse/Components/KasseDagsoplysninger/KasseDagsoplysningerViewComponent.cs

16 lines
369 B
C#
Raw Normal View History

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();
}
}