public function __construct(Lead $lead, Application $application, Request $request)
 {
     parent::__construct();
     $this->request = $request;
     $this->lead = $lead;
     $this->application = $application;
 }
示例#2
0
 public function __construct(Lender $lender, Application $application, Request $request)
 {
     parent::__construct();
     $this->lender = $lender;
     $this->application = $application;
     $this->request = $request;
 }
示例#3
0
 public function __construct(Client $client, Lead $lead, Request $request)
 {
     parent::__construct();
     $this->client = $client;
     $this->lead = $lead;
     $this->request = $request;
 }
示例#4
0
 public function __construct(Client $client, Application $application, EmploymentDetails $employment, Lead $lead, Request $request)
 {
     parent::__construct();
     $this->client = $client;
     $this->application = $application;
     $this->lead = $lead;
     $this->request = $request;
     $this->employment = $employment;
 }
 public function __construct(Client $client, Application $application, Lead $lead, Property $property, Request $request)
 {
     parent::__construct();
     $this->client = $client;
     $this->application = $application;
     $this->lead = $lead;
     $this->property = $property;
     $this->request = $request;
 }
 public function __construct(Client $client, Application $application, Lead $lead, LivingExpense $expense, Request $request)
 {
     parent::__construct();
     $this->client = $client;
     $this->application = $application;
     $this->lead = $lead;
     $this->expense = $expense;
     $this->request = $request;
 }
示例#7
0
 public function __construct(Client $client, Application $application, Lead $lead, Property $property, EmploymentDetails $employment, LivingExpense $expense, Request $request)
 {
     parent::__construct();
     $this->client = $client;
     $this->application = $application;
     $this->lead = $lead;
     $this->property = $property;
     $this->employment = $employment;
     $this->expense = $expense;
     $this->request = $request;
 }
示例#8
0
 public function __construct(Client $client, NewApplicantLoan $loan, Application $application, Property $property, Lead $lead, Request $request, Car $car, BankAccount $bankAccount, OtherAsset $otherAssets, CreditCard $cards, OtherIncome $otherIncome, EmploymentDetails $employment, LivingExpense $expense)
 {
     parent::__construct();
     $this->client = $client;
     $this->loan = $loan;
     $this->application = $application;
     $this->property = $property;
     $this->lead = $lead;
     $this->car = $car;
     $this->bankAccount = $bankAccount;
     $this->otherAssets = $otherAssets;
     $this->cards = $cards;
     $this->otherIncome = $otherIncome;
     $this->employment = $employment;
     $this->expense = $expense;
     $this->request = $request;
 }
 public function __construct()
 {
     parent::__construct();
 }
示例#10
0
 function __construct(Guard $auth)
 {
     parent::__construct();
     $this->auth = $auth;
 }
示例#11
0
 public function __construct(Lead $lead, Request $request)
 {
     parent::__construct();
     $this->lead = $lead;
     $this->request = $request;
 }
示例#12
0
 public function __construct(User $user, Request $request)
 {
     parent::__construct();
     $this->user = $user;
     $this->request = $request;
 }