12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- class UsergroupRelCourse extends \Entity
- {
-
- public static function repository(){
- return \Entity\Repository\UsergroupRelCourseRepository::instance();
- }
-
- public static function create(){
- return new self();
- }
-
- protected $id;
-
- protected $usergroup_id;
-
- protected $course_id;
-
- public function get_id()
- {
- return $this->id;
- }
-
- public function set_usergroup_id($value)
- {
- $this->usergroup_id = $value;
- return $this;
- }
-
- public function get_usergroup_id()
- {
- return $this->usergroup_id;
- }
-
- public function set_course_id($value)
- {
- $this->course_id = $value;
- return $this;
- }
-
- public function get_course_id()
- {
- return $this->course_id;
- }
- }
|