Interface CustomerReaderInterface
category |
System |
---|---|
package |
Customer |
subpackage |
Interfaces |
findById(\IdType $id) : \Customer|null
findGuestByEmail(\CustomerEmailInterface $email) : \Customer|null
findRegistreeByEmail(\CustomerEmailInterface $email) : \Customer|null
getFilterCustomersCount(array $conditions = array()) : integer
Example: $reader->filterCustomers( array('customers_id' => 1) );
array
Associative array containing the desired field and value.
integer
Returns the total customers count.
searchCustomers(\CustomerSearchCondition $condition, \Pager $pager) : array
array
Returns an array that contains customer objects.