/**
  * Helper method to help getting contacts simplistic
  *
  * @param int $items
  * @param int $page
  * @return mixed
  */
 public function getContacts($items, $page)
 {
     $contact = new Contact();
     $contact->getContacts($items, $page);
     return $this->read($contact);
 }