Example #1
0
 static function findBorrowerRatingById($id = NULL)
 {
     $model = new Borrower();
     $detail = $model->findByUserId($id);
     $ratingIndex = $detail->rating;
     return self::findBorrowerRatingOptions($ratingIndex);
 }