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