12 lines
265 B
C#
12 lines
265 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Services.Components;
|
||
|
|
|
||
|
|
public class ServiceRowViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke(ServiceItemViewModel service)
|
||
|
|
{
|
||
|
|
return View(service);
|
||
|
|
}
|
||
|
|
}
|