public IEnumerable <ChoiceOptionModel> GetScoreRatingsChoice()
 {
     return(_performanceScoreRepository.GetAll().Select(x => new ChoiceOptionModel
     {
         id = x.ScoreID,
         text = x.RatingDescription
     }));
 }