Habanero.Test.MyBO.LoadClassDefWithAggregationRelationship C# (CSharp) Method

LoadClassDefWithAggregationRelationship() public static method

public static LoadClassDefWithAggregationRelationship ( ) : IClassDef
return IClassDef
		public static IClassDef LoadClassDefWithAggregationRelationship()
		{
			IClassDef classDef = LoadClassDefWithRelationship();
			classDef.RelationshipDefCol["MyMultipleRelationship"].RelationshipType = RelationshipType.Aggregation;
			return classDef;
		}
MyBO