コード例 #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);
 }