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
14 lines
304 B
C#
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()
|
|
{
|
|
}
|
|
}
|