Ejemplo n.º 1
0
 /// <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;
 }
Ejemplo n.º 2
0
 public ReflectedDynamicClass(IAttributeMergeManager attributeMergeManager) : base(attributeMergeManager)
 {
 }