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
10 lines
179 B
C#
10 lines
179 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace PlanTempus.Application.Features.Services.Pages;
|
|
|
|
public class IndexModel : PageModel
|
|
{
|
|
public void OnGet()
|
|
{
|
|
}
|
|
}
|