12 lines
195 B
PHP
12 lines
195 B
PHP
<?php
|
|
|
|
namespace Espo\Modules\Crm\Entities;
|
|
|
|
class Prospect extends \Espo\Core\ORM\Entity
|
|
{
|
|
protected function getName()
|
|
{
|
|
return $this->get('firstName') . ' ' . $this->get('lastName');
|
|
}
|
|
}
|