PlanTempusApp/PlanTempus.Application/Features/Customers/Pages/Detail.cshtml.cs
Janus C. H. Knudsen 6b0a84a07e Adds comprehensive customer detail page with dynamic features
Develops detailed customer profile view with multiple sections including overview, statistics, journal, appointments, and activity tracking

Implements interactive UI components for customer management
Includes dynamic tab switching, editable profile sections, and activity timeline
2026-01-19 23:27:18 +01:00

14 lines
304 B
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Application.Features.Customers.Pages;
public class DetailModel : PageModel
{
[BindProperty(SupportsGet = true)]
public string Id { get; set; } = string.Empty;
public void OnGet()
{
}
}