How to inject multiple service instances into angular components of the same service?
For example - I have dbService in my code and I want to call this dbService instance two times and init both the services with two different values in the constructor. But When I create two instances in component like
constructor( private db1:dbService, private db2:dBservice ){}
It is basically same instance being injected. How to implement such use case in angular 2+ or later.