Пример #1
0
 public function __construct(Tool $tool, Employee $employee, Client $client)
 {
     $this->tool = $tool;
     $this->employee = $employee;
     $this->client = $client;
     $this->pdfFormat = PdfFormat::findOrFail($this->formatId);
 }
Пример #2
0
 public function __construct(Bond $bond, Employee $employee, Client $client)
 {
     $this->bond = $bond;
     $this->employee = $employee;
     $this->client = $client;
     $this->pdfFormat = PdfFormat::findOrFail($this->formatId);
 }
Пример #3
0
 public function __construct(Letter $letter, Employee $employee, Client $client)
 {
     $this->letter = $letter;
     $this->employee = $employee;
     $this->client = $client;
     $this->pdfFormat = PdfFormat::findOrFail($this->formatId);
 }
Пример #4
0
 public function __construct(Antique $antique, Employee $employee, Client $client)
 {
     $this->antique = $antique;
     $this->employee = $employee;
     $this->client = $client;
     $this->pdfFormat = PdfFormat::findOrFail($this->formatId);
 }
Пример #5
0
 public function __construct(Viatical $viatical, Employee $employee, Client $client)
 {
     $this->viatical = $viatical;
     $this->employee = $employee;
     $this->client = $client;
     $this->pdfFormat = PdfFormat::findOrFail($this->formatId);
 }
Пример #6
0
 public function __construct(Commission $commission, Employee $employee, Client $client)
 {
     $this->commission = $commission;
     $this->employee = $employee;
     $this->client = $client;
     $this->pdfFormat = PdfFormat::findOrFail($this->formatId);
 }
Пример #7
0
 public function __construct(Contract $contract)
 {
     $this->contract = $contract;
     $this->pdfFormat = PdfFormat::findOrFail($this->formatId);
 }