Example #1
0
 public ActionResult <SectionCreateDTO> SectionStudents(int id_section)
 {
     try
     {
         return(Ok(SqlSectionsRepository.GetAllStudents(id_section)));
     }
     catch (DatabaseException)
     {
         return(StatusCode(500));
     }
 }