I am a bit wary of having hardcoded route strings throughout my Angular app. It just seems a bit wrong! e.g.
this._router.navigate(['dashboard/customer', customer.CustomerId]);
path: 'customer', component: CustomerComponent,
Is there a way around this?