15 lines
367 B
C#
15 lines
367 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.CashRegister.Components;
|
|
|
|
/// <summary>
|
|
/// ViewComponent for period reconciliation info.
|
|
/// Shows period, register, and employee information.
|
|
/// </summary>
|
|
public class PeriodInfoViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View();
|
|
}
|
|
}
|