Example #1
0
 public bool AddTrainingCourseContent(ViewModel.tblTrainingCourseContent tblTrainingCourseContent)
 {
     return(sqlHelper.RunProcedure("sp_tblTrainingCourseContent_Insert", tblTrainingCourseContent) > 0);
 }
Example #2
0
 public bool DeleteTrainingCourseContent(ViewModel.tblTrainingCourseContent tblTrainingCourseContent)
 {
     return(sqlHelper.RunProcedure("sp_tblTrainingCourseContent_Delete", tblTrainingCourseContent) > 0);
 }
Example #3
0
 public JArray GetTrainingCourseContentJsonData_ByIDTrainingCourse(ViewModel.tblTrainingCourseContent TrainingCourseContent)
 {
     return(sqlHelper.ReturnJsonData("sp_tblContentCategoryType_GetCompleteData_ForTrainingCourseContent", TrainingCourseContent));
 }