/// <summary> /// Constructor /// </summary> /// <param name="attributeMergeManager">Defines logic used to Merge attributes</param> public ReflectedClass(IAttributeMergeManager attributeMergeManager) { Attributes = new HashSet <Attribute>(); ReflectedProperties = new HashSet <IReflectedProperty>(); ReflectedMethods = new HashSet <IReflectedMethod>(); _attributeMergeManager = attributeMergeManager; }
public ReflectedDynamicClass(IAttributeMergeManager attributeMergeManager) : base(attributeMergeManager) { }