コード例 #1
0
ファイル: FabricRepository.php プロジェクト: HOFB/HOFB
 public function __construct(FabricModel $model)
 {
     $this->model = $model;
     $this->map_table = 'fabrics_map';
     $this->key = 'fabric_id';
     parent::__construct($model);
 }
コード例 #2
0
ファイル: ColorRepository.php プロジェクト: HOFB/HOFB
 public function __construct(ColorModel $model)
 {
     $this->model = $model;
     $this->map_table = "colors_map";
     $this->key = 'color_id';
     parent::__construct($model);
 }
コード例 #3
0
ファイル: DetailRepository.php プロジェクト: HOFB/HOFB
 public function __construct(DetailModel $model)
 {
     $this->model = $model;
     $this->map_table = 'details_map';
     $this->key = 'detail_id';
     parent::__construct($model);
 }