bort@sopuli.xyz to Programmer Humor@programming.dev · 6 months agoSTOP DOING DEPENDENCY INJECTIONsopuli.xyzimagemessage-square78fedilinkarrow-up1435arrow-down134
arrow-up1401arrow-down1imageSTOP DOING DEPENDENCY INJECTIONsopuli.xyzbort@sopuli.xyz to Programmer Humor@programming.dev · 6 months agomessage-square78fedilink
minus-squarecadekat@pawb.sociallinkfedilinkarrow-up1·6 months agoI’m using value in the loosest sense, like how all objects are values. So now if you have three implementations of IProductService, how do you know which one is configured?
minus-squareZagorath@aussie.zonelinkfedilinkEnglisharrow-up1·6 months agoIt’s easy to imagine a hypothetical way that could lead to problems. But in all the code I’ve worked with, either that scenario is avoided entirely, or other context makes it absolutely clear which IProductService is being used.
I’m using value in the loosest sense, like how all objects are values.
So now if you have three implementations of
IProductService
, how do you know which one is configured?It’s easy to imagine a hypothetical way that could lead to problems. But in all the code I’ve worked with, either that scenario is avoided entirely, or other context makes it absolutely clear which
IProductService
is being used.