예제 #1
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->leaves = new \Doctrine\Common\Collections\ArrayCollection();
     $this->notifications = new \Doctrine\Common\Collections\ArrayCollection();
     $this->isMassLeaveRequest = false;
 }
예제 #2
0
파일: Rate.php 프로젝트: hkmshb/OpitHrm
 public function __construct()
 {
     parent::__construct();
 }
예제 #3
0
 public function __construct(Status $status = null, TravelExpense $travelExpense = null)
 {
     parent::__construct();
     $this->setStatus($status);
     $this->setTravelExpense($travelExpense);
 }
예제 #4
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->notifications = new \Doctrine\Common\Collections\ArrayCollection();
     $this->applicants = new \Doctrine\Common\Collections\ArrayCollection();
     $this->isActive = false;
 }
예제 #5
0
 public function __construct(Status $status = null, LeaveRequest $leaveRequest = null)
 {
     parent::__construct();
     $this->setStatus($status);
     $this->setLeaveRequest($leaveRequest);
 }
예제 #6
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->states = new \Doctrine\Common\Collections\ArrayCollection();
 }
예제 #7
0
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->requests = new \Doctrine\Common\Collections\ArrayCollection();
     parent::__construct();
 }
예제 #8
0
 public function __construct(Status $status = null, TravelRequest $travelRequest = null)
 {
     parent::__construct();
     $this->setStatus($status);
     $this->setTravelRequest($travelRequest);
 }
예제 #9
0
 /**
  * 
  * @param \Opit\OpitHrm\StatusBundle\Entity\Status $status
  * @param \Opit\OpitHrm\HiringBundle\Entity\Applicant $applicant
  */
 public function __construct(Status $status = null, Applicant $applicant = null)
 {
     parent::__construct();
     $this->setStatus($status);
     $this->setApplicant($applicant);
 }
예제 #10
0
 public function __construct()
 {
     parent::__construct();
     $this->leaveRequests = new ArrayCollection();
 }