Introduces new customers management interface with data table Adds customers-specific CSS and updates layout to include new stylesheet Configures menu service to point to new customers page route
10 lines
180 B
C#
10 lines
180 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace PlanTempus.Application.Features.Customers.Pages;
|
|
|
|
public class IndexModel : PageModel
|
|
{
|
|
public void OnGet()
|
|
{
|
|
}
|
|
}
|