Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PayorSubscriberCache"/> 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="payorSubscriberRelationshipCacheType">Type of the payor subscriber relationship cache.</param>
 public PayorSubscriberCache(Address address,
                             DateTime?birthDate,
                             AdministrativeGender gender,
                             PersonName name,
                             PayorSubscriberRelationshipCacheType payorSubscriberRelationshipCacheType)
 {
     Address              = address;
     BirthDate            = birthDate;
     AdministrativeGender = gender;
     Name = name;
     PayorSubscriberRelationshipCacheType = payorSubscriberRelationshipCacheType;
 }
Esempio n. 2
0
 /// <summary>
 /// Revises the type of the payor sub scriber relationship.
 /// </summary>
 /// <param name="payorSubscriberRelationshipCacheType">Type of the payor subscriber relationship cache.</param>
 public virtual void RevisePayorSubScriberRelatioshipType(PayorSubscriberRelationshipCacheType payorSubscriberRelationshipCacheType)
 {
     PayorSubscriberRelationshipCacheType = payorSubscriberRelationshipCacheType;
 }