Programming Language PHP

Namespace Oro\Bundle\SalesBundle\Entity

Class B2bCustomerEmail

Method/Function setOwner

Total Examples 1

1 code examples of PHP Oro\Bundle\SalesBundle\Entity\B2bCustomerEmail::setOwner extracted from open source projects

Was this example useful?
0
                                                    protected function onSuccess(B2bCustomerEmail $entity, B2bCustomer $customer)
    {
        $entity->setOwner($customer);
        $this->manager->persist($entity);
        $this->manager->flush();
    }
                                            
B2bCustomerEmail's Other Methods