public MethodTargetInjecteeBase(MethodInjectionAttributeBase attr, MethodBase targetMethod, MethodInfo injecteeMethod, TypeInjectee declInjectee)
     : base(attr, injecteeMethod, declInjectee)
 {
     TargetMethod = targetMethod;
 }
 public MethodInjecteeBase(MethodInjectionAttributeBase attr, MethodInfo injecteeMethod, TypeInjectee declInjectee)
     : base(attr)
 {
     InjecteeMethod = injecteeMethod;
     DeclInjectee = declInjectee;
 }