16 lines
382 B
C#
16 lines
382 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Account.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ViewComponent for the payment method display.
|
||
|
|
/// Shows current card info, payment frequency, and next payment date.
|
||
|
|
/// </summary>
|
||
|
|
public class PaymentMethodViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
}
|