using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Kasse.Components; /// /// ViewComponent for daily reconciliation info. /// Shows period, register, and employee information. /// public class KasseDagsoplysningerViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }