I'd like to enhance/mimic the dependency injection done by the object builder to include some custom properties
the standard way is
in mySmartPart.cs
[CreateNew] MyPresenter ABC { .... }
[ServiceDependency] myService XYZ { ... }
in include [MyCustomReferenceAttribute] CustomerObject MyCustomer { .... }
etc.
This can obviously be done after the smartPart is created but i'm guessing ( hoping ? ) there's some place i can hook up some code extension to do the needful instead of repeating the code everyplace !!!