Introduces comprehensive suppliers management with mock data, localization, and UI components Implements: - Suppliers page with data table - Localization for Danish and English - Search and filtering functionality - Responsive table design - Mock data for initial population
11 lines
270 B
C#
11 lines
270 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.Suppliers.Components;
|
|
|
|
public class SupplierRowViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke(SupplierItemViewModel supplier)
|
|
{
|
|
return View(supplier);
|
|
}
|
|
}
|