private Pasta GetPastaProjeto(Solucao solucao) { var pasta = new Pasta(this.NomeProjeto); pasta.AddSubPasta(this.GetPastaTabelas(solucao)); pasta.AddSubPasta(this.GetPastaProcedure(solucao)); pasta.AddArquivo(new ArquivoSqlProj(this)); return(pasta); }
private Pasta GetPastaProjeto(Solucao solucao) { var pasta = new Pasta(this.NomeProjeto); pasta.AddSubPasta(this.GetPastaDelegates()); pasta.AddSubPasta(this.GetPastaGeral()); pasta.AddSubPasta(this.GetPastaInterface()); foreach (var entidade in solucao.Entidades) { pasta.AddArquivo(new ArquivoEntidade(entidade)); } pasta.AddArquivo(new ArquivoVbProj(this)); return(pasta); }
private Pasta GetPastaProcedure(Solucao solucao) { var pasta = new Pasta("Procedures"); foreach (var entidade in solucao.Entidades) { pasta.AddSubPasta(this.GetPastaProceduresEntidade(entidade)); } return(pasta); }