コード例 #1
0
ファイル: GrafoPlus.cs プロジェクト: Marcos1994/MeuGrafo
        //Salva o grafo no banco
        public void criarGrafo()
        {
            GrafoDAO dao = new GrafoDAO();

            try
            {
                dao.criarGrafo(this.nome, this.width, this.height);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #2
0
ファイル: GrafoPlus.cs プロジェクト: Marcos1994/MeuGrafo
        public void abrirGrafo()
        {
            GrafoDAO  dao = new GrafoDAO();
            GrafoPlus grafoAux;

            try
            {
                grafoAux      = dao.abrirGrafo(this.nome);
                this.idGrafo  = grafoAux.idGrafo;
                this.width    = grafoAux.width;
                this.height   = grafoAux.height;
                this.vertices = grafoAux.vertices;
                this.arestas  = grafoAux.arestas;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }