Implements full customer detail page with multiple feature-rich components including overview, economy, statistics, journal, appointments, giftcards, and activity sections Creates reusable ViewComponents for different customer detail aspects with robust data modeling and presentation logic
7 lines
196 B
Text
7 lines
196 B
Text
@page "/kunder/{id}"
|
|
@model PlanTempus.Application.Features.Customers.Pages.DetailModel
|
|
@{
|
|
ViewData["Title"] = "Kundedetaljer";
|
|
}
|
|
|
|
@await Component.InvokeAsync("CustomerDetailView", Model.Id)
|