9 lines
287 B
C#
9 lines
287 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace EnotaryoPH.Web.Pages.Shared.Components.NotaryoSteps
|
|
{
|
|
public class NotaryoStepsViewComponent : ViewComponent
|
|
{
|
|
public async Task<IViewComponentResult> InvokeAsync(List<NotaryoStep> notaryoSteps) => View(notaryoSteps);
|
|
}
|
|
} |