15 lines
376 B
C#
15 lines
376 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.CashRegister.Components;
|
|
|
|
/// <summary>
|
|
/// ViewComponent for the approval section.
|
|
/// Handles status, approver selection, and confirmation checkbox.
|
|
/// </summary>
|
|
public class CashApprovalViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View();
|
|
}
|
|
}
|