示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NaturalPersonRelationshipIntegrationModel" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="LivesWith">LivesWith (required).</param>
 /// <param name="NaturalPerson">NaturalPerson.</param>
 /// <param name="RelatedId">RelatedId.</param>
 /// <param name="Relationship">Relationship.</param>
 public NaturalPersonRelationshipIntegrationModel(Guid Id        = default(Guid), bool LivesWith = default(bool), NaturalPersonIntegrationModel NaturalPerson = default(NaturalPersonIntegrationModel),
                                                  Guid RelatedId = default(Guid), RelationshipModel Relationship = default(RelationshipModel))
 {
     this.LivesWith     = LivesWith;
     this.Id            = Id;
     this.NaturalPerson = NaturalPerson;
     this.RelatedId     = RelatedId;
     this.Relationship  = Relationship;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NaturalPersonRelationshipLiteModel" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="LivesWith">LivesWith (required).</param>
 /// <param name="NaturalPersonId">NaturalPersonId.</param>
 /// <param name="NaturalPersonName">NaturalPersonName.</param>
 /// <param name="RelatedId">RelatedId.</param>
 /// <param name="Relationship">Relationship.</param>
 public NaturalPersonRelationshipLiteModel(Guid Id = default(Guid), bool LivesWith = default(bool), Guid NaturalPersonId = default(Guid), string NaturalPersonName = default(string), Guid RelatedId = default(Guid), RelationshipModel Relationship = default(RelationshipModel))
 {
     this.LivesWith         = LivesWith;
     this.Id                = Id;
     this.NaturalPersonId   = NaturalPersonId;
     this.NaturalPersonName = NaturalPersonName;
     this.RelatedId         = RelatedId;
     this.Relationship      = Relationship;
 }