Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PayorSubscriber"/> class.
 /// </summary>
 /// <param name="address">The address.</param>
 /// <param name="birthDate">The birth date.</param>
 /// <param name="gender">The gender.</param>
 /// <param name="name">The name.</param>
 /// <param name="payorSubscriberRelationshipType">Type of the payor subscriber relationship.</param>
 public PayorSubscriber(Address address,
                        DateTime?birthDate,
                        AdministrativeGender gender,
                        PersonName name,
                        PayorSubscriberRelationshipType payorSubscriberRelationshipType)
 {
     Address              = address;
     BirthDate            = birthDate;
     AdministrativeGender = gender;
     Name = name;
     PayorSubscriberRelationshipType = payorSubscriberRelationshipType;
 }
Beispiel #2
0
 /// <summary>
 /// Revises the type of the payor sub scriber relatioship.
 /// </summary>
 /// <param name="payorSubscriberRelationshipType">Type of the payor subscriber relationship.</param>
 public virtual void RevisePayorSubScriberRelatioshipType(PayorSubscriberRelationshipType payorSubscriberRelationshipType)
 {
     PayorSubscriberRelationshipType = payorSubscriberRelationshipType;
 }