PlanTempusApp/PlanTempus.Application/Features/CashRegister/Components/PeriodInfo/PeriodInfoViewComponent.cs

16 lines
367 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
2026-01-11 21:42:24 +01:00
namespace PlanTempus.Application.Features.CashRegister.Components;
/// <summary>
2026-01-11 21:42:24 +01:00
/// ViewComponent for period reconciliation info.
/// Shows period, register, and employee information.
/// </summary>
2026-01-11 21:42:24 +01:00
public class PeriodInfoViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}