PlanTempusApp/PlanTempus.Application/Features/Suppliers/Components/SupplierRow/SupplierRowViewComponent.cs

12 lines
270 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Suppliers.Components;
public class SupplierRowViewComponent : ViewComponent
{
public IViewComponentResult Invoke(SupplierItemViewModel supplier)
{
return View(supplier);
}
}