* Changed string parameters to GUID

This commit is contained in:
2025-02-01 07:14:29 +01:00
parent f996b668c2
commit 98777328d7
17 changed files with 43 additions and 48 deletions

View File

@@ -72,7 +72,7 @@
private void OnRowDoubleClick(GridRowEventArgs<CustomerOrderDto> obj)
{
string customerOrderId = obj.Item.CoNum;
Guid customerOrderId = obj.Item.RowPointer;
NavigationManager.NavigateTo($"/CustomerOrder/{customerOrderId}");
}