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