16 lines
369 B
C#
16 lines
369 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Account.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ViewComponent for the invoice history table.
|
||
|
|
/// Shows past invoices with status and download options.
|
||
|
|
/// </summary>
|
||
|
|
public class InvoiceHistoryViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
}
|