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