Example #1
0
 public void RebuildSectionStudentRelationships(SectionStudentModel model)
 {
     _sectionsRepository.ClearSectionStudents(model.SectionId);
     _sectionsRepository.Save();
     _sectionsRepository.AssignStudents(model.SectionId, model.StudenstIds);
     _sectionsRepository.Save();
 }