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) );
arrayAssociative array containing the desired field and value.
integerReturns the total customers count.
searchCustomers(\CustomerSearchCondition $condition, \Pager $pager) : array
arrayReturns an array that contains customer objects.