Introduces comprehensive services management module with: - Dynamic service and category tables - Localization support for services section - Mock data for services and categories - Responsive UI components for services listing - Menu navigation and styling updates Enhances application's service management capabilities
11 lines
265 B
C#
11 lines
265 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.Services.Components;
|
|
|
|
public class ServiceRowViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke(ServiceItemViewModel service)
|
|
{
|
|
return View(service);
|
|
}
|
|
}
|