public static function make(Scholarship $scholarship, User $user)
 {
     $entry = new ScholarshipEntry();
     $entry->setScholarship($scholarship);
     $entry->setUser($user);
     return $entry;
 }