15 lines
361 B
C#
15 lines
361 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.CashRegister.Components;
|
|
|
|
/// <summary>
|
|
/// ViewComponent for the note field.
|
|
/// Optional field for explaining cash differences.
|
|
/// </summary>
|
|
public class ReconciliationNoteViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View();
|
|
}
|
|
}
|