public int CoursePreviewEducation(int educationID) { DLModel.Education edu = new DLModel.Education { EducationID = educationID, IsCoursePreview = true }; return(_eduRepository.Update(edu, ed => ed.IsCoursePreview)); }
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)); }