PlanTempusApp/PlanTempus.Application/Features/Customers/Pages/Detail.cshtml

8 lines
196 B
Text
Raw Normal View History

@page "/kunder/{id}"
@model PlanTempus.Application.Features.Customers.Pages.DetailModel
@{
ViewData["Title"] = "Kundedetaljer";
}
@await Component.InvokeAsync("CustomerDetailView", Model.Id)