public JsonResult GeraAlunos(int qtdTurmas, int qtdAlunos) { string resposta = Util.Resultado.Ok.ToString(); using (IConnection Conexao = new Connection()) { Conexao.Abrir(); IDAO <Turma> turmaDAO = new TurmaDAO(Conexao); IDAO <Aluno> alunoDAO = new AlunoDAO(Conexao); IDAO <Prova> provaDAO = new ProvaDAO(Conexao); IDAO <Materia> materiaDAO = new MateriaDAO(Conexao); provaDAO.ExcluirTodos(); materiaDAO.ExcluirTodos(); alunoDAO.ExcluirTodos(); turmaDAO.ExcluirTodos(); Turma turma = new Turma(); Aluno aluno = new Aluno(); //Gera as turmas automaticamente... for (var i = 1; i <= qtdTurmas; i++) { turma.Nome = Util.cTurma + i.ToString(); turmaDAO.inserir(turma); for (var y = 1; y <= qtdAlunos; y++) { aluno.Nome = Util.cAluno + y.ToString(); aluno.Turma = turma; alunoDAO.inserir(aluno); } } } return(Json(resposta)); }