예제 #1
0
 public Resposta Carrega(int id)
 {
     try
     {
         var respostaBD = new BancoDAO();
         return(respostaBD.CarregaResposta(id));
     }
     catch (Exception ex)
     {
         throw new Exception($"Erro ao carregar Resposta: Erro => {ex.Message}");
     }
 }