Ejemplo n.º 1
0
 /**
  * Constructor used by implementation to set the contact Phone
  *
  * @param Phone     Phone number
  * @param PhoneType Type of Phone number
  * @since V2.0
  */
 public ContactPhone(string phone, ContactPhoneType phoneType) : base()
 {
     this.Phone     = Phone;
     this.PhoneType = PhoneType;
 }
Ejemplo n.º 2
0
 /**
  * Set the phoneType of the phone number
  *
  * @param PhoneType Type of Phone number
  * @since V2.0
  */
 public void SetPhoneType(ContactPhoneType PhoneType)
 {
     this.PhoneType = PhoneType;
 }