/**
  * accessor for the home phone
  *
  * @return the home phone
  */
 public String getHomePhone() {
   return homePhone(_pawsPatient.getTelecoms());
 }
 /**
  * accessor for the work phone
  *
  * @return the work phone
  */
 public String getWorkPhone() {
   return workPhone(_pawsPatient.getTelecoms());
 }
 /**
  * accessor for for the call back phone
  *
  * @return the callback phone
  */
 public String getCallbackPhone() {
   return (StringUtil.isEmpty(_callbackPhone))
       ? homePhone(_pawsPatient.getTelecoms())
       : _callbackPhone;
 }