Ejemplo n.º 1
0
 public int Insertar(TEMA entidad)
 {
     try
     {
         //validar la entidad
         return(temaDAO.Insertar(entidad));
     }
     catch (Exception ex)
     {
         throw new PeriodicoException(Mensajes.Errores.ERROR_INSERTAR_TEMA, ex);
     }
 }