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
This commit is contained in:
parent
cd7acaf490
commit
6ef001e35f
11 changed files with 869 additions and 675 deletions
|
|
@ -0,0 +1,11 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace PlanTempus.Application.Features.Customers.Components;
|
||||
|
||||
public class CustomerRowViewComponent : ViewComponent
|
||||
{
|
||||
public IViewComponentResult Invoke(CustomerItemViewModel customer)
|
||||
{
|
||||
return View(customer);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue