PlanTempusApp/PlanTempus.Application/Features/Customers/Components/CustomerRow/CustomerRowViewComponent.cs

12 lines
270 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Customers.Components;
public class CustomerRowViewComponent : ViewComponent
{
public IViewComponentResult Invoke(CustomerItemViewModel customer)
{
return View(customer);
}
}