date_create = new DateTime(); $this->rating = 0; $this->message = ""; } public function getID() { return $this->id; } public function setPartner(Partner $partner) { $this->partner = $partner; return $this; } public function getPartner() { return $this->partner; } public function setRating($rating) { $this->rating = $rating; return $this; } public function getRating() { return $this->rating; } public function setMessage($message) { $this->message = $message; return $this; } public function getMessage() { return $this->message; } public function getDateCreate() { return $this->date_create; } public function setMobileSession(MobileSession $mobile_session) { $this->mobile_session = $mobile_session; return $this; } public function getMobileSession() { return $this->mobile_session; } public function setCustomerSession(CustomerSession $customer_session) { $this->customer_session = $customer_session; return $this; } public function getCustomerSession() { return $this->customer_session; } }