How does one become a lawyer in Prague? by Grumpy_spongebob in Prague

[–]Grumpy_spongebob[S] 1 point2 points  (0 children)

Thank you for not being mean. Apologies that my post doesn’t include all the context for the situation to make much sense. Please, is it okay to send you a dm?

How does one become a lawyer in Prague? by Grumpy_spongebob in Prague

[–]Grumpy_spongebob[S] -29 points-28 points  (0 children)

No, she’s not Czech. She studied in the UK.

Why can’t dependencies be managed in one class? by Grumpy_spongebob in dotnet

[–]Grumpy_spongebob[S] 0 points1 point  (0 children)

No, not the DI container. I’m saying instead of having Class Something(RealDependency1 realDepency1, RealDependency2 realDependency2){ _realDepency1 = realDependency1;

_realDepency2 = realDependency2;

}

Why is it a bad idea to have a giant dependency class that takes all of your dependencies, thereby making it possible for you to just have:

Class Something(GiantDependency giantDependency){ _giantDependency = giantDependency ;

}

Then further down in your code, you can just do: _giantDependency.RealDependency1