public function __construct(Tool $tool, Employee $employee, Client $client) { $this->tool = $tool; $this->employee = $employee; $this->client = $client; $this->pdfFormat = PdfFormat::findOrFail($this->formatId); }
public function __construct(Bond $bond, Employee $employee, Client $client) { $this->bond = $bond; $this->employee = $employee; $this->client = $client; $this->pdfFormat = PdfFormat::findOrFail($this->formatId); }
public function __construct(Letter $letter, Employee $employee, Client $client) { $this->letter = $letter; $this->employee = $employee; $this->client = $client; $this->pdfFormat = PdfFormat::findOrFail($this->formatId); }
public function __construct(Antique $antique, Employee $employee, Client $client) { $this->antique = $antique; $this->employee = $employee; $this->client = $client; $this->pdfFormat = PdfFormat::findOrFail($this->formatId); }
public function __construct(Viatical $viatical, Employee $employee, Client $client) { $this->viatical = $viatical; $this->employee = $employee; $this->client = $client; $this->pdfFormat = PdfFormat::findOrFail($this->formatId); }
public function __construct(Commission $commission, Employee $employee, Client $client) { $this->commission = $commission; $this->employee = $employee; $this->client = $client; $this->pdfFormat = PdfFormat::findOrFail($this->formatId); }
public function __construct(Contract $contract) { $this->contract = $contract; $this->pdfFormat = PdfFormat::findOrFail($this->formatId); }