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