コード例 #1
0
 public int CoursePreviewEducation(int educationID)
 {
     DLModel.Education edu = new DLModel.Education
     {
         EducationID     = educationID,
         IsCoursePreview = true
     };
     return(_eduRepository.Update(edu, ed => ed.IsCoursePreview));
 }
コード例 #2
0
 public int PublishEducation(int educationID)
 {
     DLModel.Education edu = new DLModel.Education
     {
         EducationID     = educationID,
         IsPublished     = true,
         IsCoursePreview = null
     };
     return(_eduRepository.Update(edu, ed => ed.IsPublished, ed => ed.IsCoursePreview));
 }