public function __construct($productTemplateId = null, $rate = null, $rateCardId = null, $id = null, $status = null, $BaseRateType = null)
 {
     parent::__construct();
     $this->productTemplateId = $productTemplateId;
     $this->rate = $rate;
     $this->rateCardId = $rateCardId;
     $this->id = $id;
     $this->status = $status;
     $this->BaseRateType = $BaseRateType;
 }
예제 #2
0
 public function __construct($rateCardId = null, $id = null)
 {
     parent::__construct();
     $this->rateCardId = $rateCardId;
     $this->id = $id;
 }
 public function __construct($rateCardId = null, $id = null, $BaseRateType = null)
 {
     parent::__construct();
     $this->rateCardId = $rateCardId;
     $this->id = $id;
     $this->BaseRateType = $BaseRateType;
 }