@@ -120,11 +120,11 @@ bool zeroBased
120120
121121 int InsertCompetencyGroup ( string groupName , string ? groupDescription , int adminId , int ? frameworkId = null ) ;
122122
123- int InsertFrameworkCompetency ( int competencyId , int ? frameworkCompetencyGroupID , int adminId , int frameworkId , bool alwaysShowDescription = false , bool addDefaultQuestions = true ) ;
123+ int InsertFrameworkCompetency ( int competencyId , int ? frameworkCompetencyGroupID , int adminId , int frameworkId , bool addDefaultQuestions = true ) ;
124124
125125 IEnumerable < FrameworkCompetency > GetAllCompetenciesForAdminId ( string name , int adminId ) ;
126126
127- int InsertCompetency ( string name , string ? description , int adminId ) ;
127+ int InsertCompetency ( string name , string ? description , int adminId , bool alwaysShowDescription = false ) ;
128128
129129 int InsertFrameworkCompetencyGroup ( int groupId , int frameworkID , int adminId ) ;
130130
@@ -594,19 +594,19 @@ public int InsertComment(int frameworkId, int adminId, string comment, int? repl
594594 return frameworkDataService . InsertComment ( frameworkId , adminId , comment , replyToCommentId ) ;
595595 }
596596
597- public int InsertCompetency ( string name , string ? description , int adminId )
597+ public int InsertCompetency ( string name , string ? description , int adminId , bool alwaysShowDescription = false )
598598 {
599- return frameworkDataService . InsertCompetency ( name , description , adminId ) ;
599+ return frameworkDataService . InsertCompetency ( name , description , adminId , alwaysShowDescription ) ;
600600 }
601601
602602 public int InsertCompetencyGroup ( string groupName , string ? groupDescription , int adminId , int ? frameworkId )
603603 {
604604 return frameworkDataService . InsertCompetencyGroup ( groupName , groupDescription , adminId , frameworkId ) ;
605605 }
606606
607- public int InsertFrameworkCompetency ( int competencyId , int ? frameworkCompetencyGroupID , int adminId , int frameworkId , bool alwaysShowDescription = false , bool addDefaultQuestions = true )
607+ public int InsertFrameworkCompetency ( int competencyId , int ? frameworkCompetencyGroupID , int adminId , int frameworkId , bool addDefaultQuestions = true )
608608 {
609- return frameworkDataService . InsertFrameworkCompetency ( competencyId , frameworkCompetencyGroupID , adminId , frameworkId , alwaysShowDescription , addDefaultQuestions ) ;
609+ return frameworkDataService . InsertFrameworkCompetency ( competencyId , frameworkCompetencyGroupID , adminId , frameworkId , addDefaultQuestions ) ;
610610 }
611611
612612 public int InsertFrameworkCompetencyGroup ( int groupId , int frameworkID , int adminId )
0 commit comments