In Blazor WASM HttpClient and NavigationManager are part of default injected services, but they are through their concrete types and not interfaces.
We have to inject them in specific services to be able to mock in unit testing.
Is possible to add interfaces to inject both of them ?
Thanks.