16 lines
379 B
C#
16 lines
379 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Settings.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ViewComponent for the payments settings tab.
|
||
|
|
/// Handles in-store payment methods, online payments, and fees.
|
||
|
|
/// </summary>
|
||
|
|
public class SettingsPaymentsViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
}
|