/// <summary> /// Método que carrega a informação das classes Pessoas, Curso e Aulas de ficheiro /// </summary> public static void CarregaInformacao() { // Tenta carregar pessoas try { Pessoas.CarregaPessoas(); } catch (Exception) { throw new Exception(" - Não foi possivel carregar pessoas !"); } /* * // Tenta carregar Aulas * try * { * Aulas.CarregaAulas(); * } * * * catch (Exception) * { * * throw new Exception(" - Não foi possivel carregar Aulas !"); * } * * * // Tenta carregar Curso * try * { * Curso.CarregaCurso(); * } * * * catch (Exception) * { * * throw new Exception(" - Não foi possivel carregar Curso !"); * } */ }