public void Excluir(int id) { var strQuery = string.Format(" DELETE FROM DISCIPLINA WHERE DisciplinaId = {0} ", id); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
public void Excluir(int id) { var strQuery = string.Format(" DELETE FROM CURSO WHERE CursoId = {0} ", id); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
public void Excluir(int id) { var strQuery = string.Format(" DELETE FROM PROFESSOR WHERE ProfessorId = {0} ", id); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
public void ExcluirDisciplinasDoProfessor(int professorId) { var strQuery = string.Format(" DELETE FROM PROFESSOR_DISCIPLINA WHERE ProfessorId = {0} ", professorId); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
private void Inserir(Curso curso) { var strQuery = " "; strQuery += " INSERT INTO CURSO (Nome, Objetivo, CargaHoraria) "; strQuery += string.Format(" VALUES ('{0}','{1}', '{2}') ", curso.Nome, curso.Objetivo, curso.CargaHoraria); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
private void Inserir(Disciplina disciplina) { var strQuery = " "; strQuery += " INSERT INTO DISCIPLINA (Nome, ConteudoProgramatico) "; strQuery += string.Format(" VALUES ('{0}','{1}') ", disciplina.Nome, disciplina.ConteudoProgramatico); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
private void Inserir(Professor professor) { var strQuery = " "; strQuery += " INSERT INTO PROFESSOR (Nome, Habilidades, Salario) "; strQuery += string.Format(" VALUES ('{0}','{1}', '{2}') ", professor.Nome, professor.Habilidades, professor.Salario.ToString(CultureInfo.InvariantCulture)); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
private void Alterar(Disciplina disciplina) { var strQuery = " "; strQuery += " UPDATE DISCIPLINA SET "; strQuery += string.Format(" Nome = '{0}', ", disciplina.Nome); strQuery += string.Format(" ConteudoProgramatico = '{0}' ", disciplina.ConteudoProgramatico); strQuery += string.Format(" WHERE DisciplinaId = {0}", disciplina.DisciplinaId); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
private void Alterar(Curso curso) { var strQuery = " "; strQuery += " UPDATE CURSO SET "; strQuery += string.Format(" Nome = '{0}', ", curso.Nome); strQuery += string.Format(" Objetivo = '{0}', ", curso.Objetivo); strQuery += string.Format(" CargaHoraria = '{0}' ", curso.CargaHoraria); strQuery += string.Format(" WHERE CursoId = {0}", curso.CursoId); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
private void Alterar(Professor professor) { var strQuery = " "; strQuery += " UPDATE PROFESSOR SET "; strQuery += string.Format(" Nome = '{0}', ", professor.Nome); strQuery += string.Format(" Habilidades = '{0}', ", professor.Habilidades); strQuery += string.Format(" Salario = '{0}' ", professor.Salario.ToString(CultureInfo.InvariantCulture)); strQuery += string.Format(" WHERE ProfessorId = {0}", professor.ProfessorId); using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }
public void InserirDisciplinasDoProfessor(int professorId, int[] disciplinasIds) { var strQuery = " "; foreach (var disciplinaId in disciplinasIds) { strQuery += " INSERT INTO PROFESSOR_DISCIPLINA (ProfessorId, DisciplinaId) "; strQuery += string.Format(" VALUES ('{0}','{1}'); ", professorId, disciplinaId); } using (contexto = new Contexto()) { contexto.ExecutaComando(strQuery); } }