public string VocabPlural()
 {
     if (SelfAssessment != null)
     {
         return(FrameworkVocabularyHelper.VocabularyPlural(SelfAssessment.Vocabulary));
     }
     else
     {
         return("Capabilities");
     }
 }
 public SelfAssessmentDescriptionViewModel(
     CurrentSelfAssessment selfAssessment,
     List <SelfAssessmentSupervisor> supervisors
     )
 {
     Id                          = selfAssessment.Id;
     Name                        = selfAssessment.Name;
     Description                 = selfAssessment.Description;
     IncludesSignposting         = selfAssessment.IncludesSignposting;
     UserBookmark                = selfAssessment.UserBookmark;
     UnprocessedUpdates          = selfAssessment.UnprocessedUpdates;
     LinearNavigation            = selfAssessment.LinearNavigation;
     IsSupervised                = selfAssessment.IsSupervised;
     IsSupervisorResultsReviewed = selfAssessment.IsSupervisorResultsReviewed;
     Supervisors                 = supervisors;
     Vocabulary                  = selfAssessment.Vocabulary;
     VocabPlural                 = FrameworkVocabularyHelper.VocabularyPlural(selfAssessment.Vocabulary);
 }
Beispiel #3
0
 public string VocabPlural(string vocabulary)
 {
     return(FrameworkVocabularyHelper.VocabularyPlural(vocabulary));
 }
Beispiel #4
0
 public string VocabPlural()
 {
     return(FrameworkVocabularyHelper.VocabularyPlural(SupervisorComment?.Vocabulary));
 }
 public string VocabPlural()
 {
     return(FrameworkVocabularyHelper.VocabularyPlural(DetailFramework.FrameworkConfig));
 }
 public string VocabSingular()
 {
     return(FrameworkVocabularyHelper.VocabularySingular(DetailFramework.FrameworkConfig));
 }
 public string VocabPlural()
 {
     return(FrameworkVocabularyHelper.VocabularyPlural(SelfAssessment.Vocabulary));
 }
Beispiel #8
0
 public string VocabPlural()
 {
     return(FrameworkVocabularyHelper.VocabularyPlural(Competency.Vocabulary));
 }