Example #1
0
 /**
  * @param int $user_id
  * @return bool
  */
 public function delete($user_id)
 {
     return $this->data_provider->deleteUser($user_id) > 0;
 }
 /**
  * @param int $monthly_goal_id
  * @return bool
  */
 public function delete($monthly_goal_id)
 {
     return $this->data_provider->deleteMonthlyGoal($monthly_goal_id);
 }
 /**
  * @param int $period_goal_id
  * @return bool
  */
 public function delete($period_goal_id)
 {
     return $this->data_provider->deletePeriodGoal($period_goal_id);
 }
 /**
  * @param string $purchase_id
  * @return bool
  */
 public function delete($purchase_id)
 {
     return $this->data_provider->deletePurchase($purchase_id);
 }