14 lines
294 B
C#
14 lines
294 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace ViewComponents
|
|||
|
|
{
|
|||
|
|
public class PayWaitViewComponent : ViewComponent
|
|||
|
|
{
|
|||
|
|
public async Task<IViewComponentResult> InvokeAsync()
|
|||
|
|
{
|
|||
|
|
return View();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|