예제 #1
0
 /**
  * DbTagRepository constructor.
  *
  * @param Tag $model
  */
 public function __construct(Tag $model = null)
 {
     $model = $model === null ? new Tag() : $model;
     parent::__construct($model);
 }
예제 #2
0
 /**
  * DbUserRepository constructor.
  *
  * @param User $model
  */
 public function __construct(User $model = null)
 {
     $model = $model === null ? new User() : $model;
     parent::__construct($model);
 }
예제 #3
0
 /**
  * DbEventRepository constructor.
  *
  * @param Event $model
  */
 public function __construct(Event $model = null)
 {
     $model = $model === null ? new Event() : $model;
     parent::__construct($model);
 }
예제 #4
0
 /**
  * DbArticleRepository constructor.
  *
  * @param Article $model
  */
 public function __construct(Article $model = null)
 {
     $model = $model === null ? new Article() : $model;
     parent::__construct($model);
 }
예제 #5
0
 /**
  * DbDecisionRepository constructor.
  *
  * @param Decision $model
  */
 public function __construct(Decision $model = null)
 {
     $model = $model === null ? new Decision() : $model;
     parent::__construct($model);
 }
예제 #6
0
 /**
  * DbServiceRepository constructor.
  *
  * @param Service $model
  */
 public function __construct(Service $model = null)
 {
     $model = $model === null ? new Service() : $model;
     parent::__construct($model);
 }
예제 #7
0
 /**
  * DbIndustryRepository constructor.
  *
  * @param Industry $model
  */
 public function __construct(Industry $model = null)
 {
     $model = $model === null ? new Industry() : $model;
     parent::__construct($model);
 }
예제 #8
0
 /**
  * DbWorkgroupRepository constructor.
  */
 public function __construct()
 {
     parent::__construct(new Workgroup());
 }
예제 #9
0
 /**
  * DbCompanyRepository constructor.
  *
  * @param Company $model
  */
 public function __construct(Company $model = null)
 {
     $model = $model === null ? new Company() : $model;
     parent::__construct($model);
 }