I have scinario I implemented before in express app using inversifyjs, I need to implement it using nestjs.
I have services(A, B,C) that implement abstact class(Service Abstract) which inheret from the interface (IService). I need to inject one from above services (A or B or C) based on param in route (/:serviceType). How can I achieve that in nest ?