public PresentationContact contactToPresentationContact(Contact contact) {
   PresentationContact presentationContact = new PresentationContact();
   presentationContact.setIdContact(contact.getIdContact());
   presentationContact.setFirstName(contact.getFirstName());
   presentationContact.setLastName(contact.getLastName());
   presentationContact.setEmail(contact.getEmail());
   presentationContact.setPhone(contact.getPhone());
   return presentationContact;
 }