PlanTempusApp/PlanTempus.Application/Features/Customers/Components/CustomerRow/CustomerRowViewComponent.cs
Janus C. H. Knudsen 6ef001e35f Adds comprehensive customers list and management components
Introduces customer-related view components for table and row display
Implements mock data loading and customer list rendering
Adds localization support for customer-related text
Enhances UI with detailed customer information and interactions
2026-01-21 18:00:53 +01:00

11 lines
270 B
C#

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