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
11 lines
270 B
C#
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);
|
|
}
|
|
}
|