/**
  * The Constructor used by the implementation
  *
  * @param Name       of the Contact
  * @param MiddleName of the Contact
  * @param LastName   of the Contact
  * @param Title      of the Contact
  * @since V2.0
  */
 public ContactPersonalInfo(string name, string middleName, string lastName, ContactPersonalInfoTitle title) : base()
 {
     this.Name       = Name;
     this.MiddleName = MiddleName;
     this.LastName   = LastName;
     this.Title      = Title;
 }
 /**
  * Set the Title of the Contact
  *
  * @param Title of the Contact
  * @since V2.0
  */
 public void SetTitle(ContactPersonalInfoTitle Title)
 {
     this.Title = Title;
 }