示例#1
0
 public IActionResult RemoverEstudio(int id)
 {
     try {
         estudioRepository.RemoverEstudio(id);
         return(Ok(new { message = "Estúdio removido com sucesso" }));
     }catch (Exception ex) {
         return(BadRequest(new { message = "Erro: " + ex.Message }));
     }
 }