Beispiel #1
0
 public void Carregar(Tema tema)
 {
     if (tema.GetId() <= 0)
     {
         throw new ExcecaoSAG("Obrigatório selecionar um tema.");
     }
     try
     {
         temaDAO.Carregar(tema);
     }
     catch (ExcecaoSAG ex)
     {
         throw new ExcecaoSAG(ex.getMsg());
     }
 }