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

LoadClassDefWithAssociationRelationship() public static method

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