Пример #1
0
 /**
  * @return float - the risk that the company takes on given
  * the success_rate() of the Salesperson
  */
 public function risk(Lead $lead)
 {
     return $lead->value() * (1 - $this->success_rate());
 }