Same route with diferente parameter

I have this two routes:

 {path: 'new-client/:id', loadChildren: './pages/new-client/new-client.module#NewClientPageModule'},
 {path: 'new-client/:isOrder', loadChildren: './pages/new-client/new-client.module#NewClientPageModule'},
   

Ow can i nav to both?

Like, I one page i need to use "new-client/:id’ and in other i need to use “new-client/:isOrder”

I assume Angular is throwing an error? You are probably going to have to create a service that is called by a route resolver that can unwrap the data to determine what the data is.