/**
  * record the score of member where the score come from
  */
 public static function recordScore($data)
 {
     $scoreHistory = new ScoreHistory();
     $scoreHistory->load($data, '');
     if (false === $scoreHistory->save()) {
         return false;
     } else {
         return $scoreHistory;
     }
 }