Example #1
0
 public ClassGenerator AddAutoProperty(AutoPropertyGenerator property)
 {
     classType.Members.Add(property.GetMember());
     AutoProperties.Add(property);
     return(this);
 }
Example #2
0
 public InterfaceGenerator AddAutoProperty(AutoPropertyGenerator property)
 {
     interfaceType.Members.Add(property.GetMember());
     return(this);
 }