public Semestres GetOne(int pId)
 {
     string sql = "select * from semestres where id=" + pId;
     MySqlDataReader dr = conn.executarConsulta(sql);
     dr.Read();
     Semestres SemestreEditando = new Semestres((int)dr["id"], (string)dr["nome"]);
     return SemestreEditando;
 }
 public ActionResult Update(Semestres semestre)
 {
     repositorioSemestres.Update(semestre);
     return RedirectToAction("Index");
 }
 public void Update(Semestres pSemestre)
 {
     string update = "update semestres set nome ='" + pSemestre.nome + "'where id=" + pSemestre.id;
     conn.executarComando(update);
 }
 public void Create(Semestres pSemestre)
 {
     string insert = "insert into semestres values ("; insert += pSemestre.id + ",'" + pSemestre.nome + "')";
     conn.executarComando(insert);
 }