12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JBIM.Relationship
- {
- public class OneToManyRel:RelationshipBase
- {
- public OneToManyRel()
- {
- }
- public OneToManyRel(string relatingObject)
- {
- RelatingObject = relatingObject;
- }
- public OneToManyRel(string relatingObject, List<string> relatedObjects)
- {
- RelatingObject = relatingObject;
- RelatedObjects = relatedObjects;
- }
-
-
-
- public string RelatingObject { get; set; }
-
-
-
- public List<string> RelatedObjects { get; set; }
- }
- }
|