Interface CustomerReadServiceInterface
| category |
System |
|---|---|
| package |
Customer |
| subpackage |
Interfaces |
addressIsDefaultCustomerAddress(\CustomerAddressInterface $customerAddress) : boolean
booleanIs provided address the customer's default address?
filterCustomers(array $conditions, integer $limit, integer $offset) : array
Example: $service->filterCustomers('customers_id' => 1);
arrayAssociative array containing the desired field and value.
integerMySQL limit applied to the records.
integerMySQL offset applied to the records.
arrayReturns an array that contains customer objects.
getCustomerById(\IdType $customerId) : \Customer
getFilterCustomersCount(array $conditions = array()) : integer
Example: $service->filterCustomers('customers_id' => 1);
arrayAssociative array containing the desired field and value.
integer
registreeEmailExists(\CustomerEmailInterface $email) : boolean
booleanDoes the E-Mail address already exist?
searchCustomers(\CustomerSearchCondition $condition, \Pager $pager) : array
arrayReturns an array that contains customer objects.