Is this Better than Constructor Injection?
So after I finished my post on property injection I thought of something, maybe I shouldn’t use constructor injection for my classes. Maybe, I can just use lazy properties that would call my IoC (Ninject) Kernel to instantiate the object. So instead of defining a constructor like this: public IAccountService Service { get; set; } [...]
