public IActionResult Get(int id)
 {
     try
     {
         return(Ok(_repo.Selecionar(id)));
     }
     catch (System.Exception)
     {
         return(StatusCode(500));
     }
 }
Ejemplo n.º 2
0
 public IActionResult Get(int id)
 {
     try
     {
         TurmaProfessor turmaProfessor = _repo.Selecionar(id);
         return(Ok(_mapper.Map <TurmaProfessorDto>(turmaProfessor)));
     }
     catch (System.Exception)
     {
         return(StatusCode(500));
     }
 }
Ejemplo n.º 3
0
 public TurmaProfessor Get(int id)
 {
     return(_repo.Selecionar(id));
 }