user = $user; return $this; } /** * Get userId. * * @return User */ public function getUser() { return $this->user; } /** * Set group. * * @param CGroupInfo $group * * @return CGroupRelTutor */ public function setGroup(CGroupInfo $group) { $this->group = $group; return $this; } /** * Get group. * * @return CGroupInfo */ public function getGroup() { return $this->group; } /** * Set id. * * @param int $id * * @return CGroupRelTutor */ public function setId($id) { $this->id = $id; return $this; } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Set cId. * * @param int $cId * * @return CGroupRelTutor */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId. * * @return int */ public function getCId() { return $this->cId; } }