Ejemplo n.º 1
0
        public void ExtractFrom(object target)
        {
            if (target == null)
            {
                return;
            }

            InjectReflectionTypeInfo typeInfo = InjectReflection.GetTypeInfo(target.GetType());

            typeInfo.ExtractFrom(this, target);
        }
Ejemplo n.º 2
0
        public void InjectTo(object target)
        {
            if (target == null)
            {
                return;
            }

            InjectReflectionTypeInfo typeInfo = InjectReflection.GetTypeInfo(target.GetType());

            typeInfo.InjectTo(this, target);
        }