예제 #1
0
 public function addCreatePlan($hash_in)
 {
     $hash_out = Transactions::createCreatePlanHash($hash_in);
     $this->addTransaction($hash_out, $hash_in, "createPlan");
     $this->counts_and_amounts['createPlan']['count'] += 1;
 }
예제 #2
0
 public function createPlan($hash_in)
 {
     $hash_out = Transactions::createCreatePlanHash($hash_in);
     $createPlanResponse = $this->processRequest($hash_out, $hash_in, "createPlan");
     return $createPlanResponse;
 }