public static bool Save(string pNome, int pIdDiscipllina) { Alunos alu = new Alunos(); alu.Nome = pNome; alu.IdDisc = pIdDiscipllina; AlunosDB.save(alu); return true; }
public static string updateEstrelas(Alunos pAlu) { DataBase db = getDataBase(); Alunos update = (from d in db.Alunos where d.IdAluno == pAlu.IdAluno && d.IdDisc == pAlu.IdDisc select d).First(); update.NEstrelas = pAlu.NEstrelas + update.NEstrelas; db.SubmitChanges(); return "Update feito com Sucesso!"; }
public static string updateEstrelas(Alunos pAlu) { DataBase db = getDataBase(); Alunos update = (from d in db.Alunos where d.IdAluno == pAlu.IdAluno && d.IdDisc == pAlu.IdDisc select d).First(); update.NEstrelas = pAlu.NEstrelas + update.NEstrelas; db.SubmitChanges(); return("Update feito com Sucesso!"); }
private void lbxAlunos_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (aux2 == true) { aux = 1;//para quando eu entrar em outra pagina o aux2 nao recebe false; alunos = (sender as ListBox).SelectedItem as Models.Alunos; AbrePagina("/BuscaPage.xaml"); } else { aux2 = true; } }
public static string save(Alunos pAlu) { if (pAlu.Nome != "") { DataBase db = getDataBase(); db.Alunos.InsertOnSubmit(pAlu); db.SubmitChanges(); } else { return("Preencha o campo Nome."); } return(pAlu.Nome + " cadastrado com Sucesso"); }
public static string save(Alunos pAlu) { if (pAlu.Nome != "") { DataBase db = getDataBase(); db.Alunos.InsertOnSubmit(pAlu); db.SubmitChanges(); } else { return "Preencha o campo Nome."; } return pAlu.Nome + " cadastrado com Sucesso"; }
private void MenuItem_Tap_1(object sender, System.Windows.Input.GestureEventArgs e) { aux = 0; alunos = (sender as MenuItem).DataContext as Models.Alunos; if (MessageBox.Show("Tem certeza em excluir esse Aluno ? ", "Confirmação", MessageBoxButton.OKCancel) == MessageBoxResult.OK) { if (Models.EstrelasDB.getEstrelas(alunos.IdAluno, disciplina.IdDisc).Count > 0) { Models.EstrelasDB.delet(alunos); } Models.AlunosDB.delet(alunos); listarAlunos(disciplina); } }
public void novo() { try { if (ptxtAluno.Text != string.Empty) { Models.Alunos alu = new Models.Alunos(); alu.Nome = ptxtAluno.Text; alu.IdDisc = disciplina.IdDisc; alu.NEstrelas = 0; Models.AlunosDB.save(alu); } else { MessageBox.Show("Preencha o campo Nome do Aluno."); } } catch { MessageBox.Show("Não foi possivel salvar o aluno.","ERRO",MessageBoxButton.OK); } }
public void novo() { try { if (ptxtAluno.Text != string.Empty) { Models.Alunos alu = new Models.Alunos(); alu.Nome = ptxtAluno.Text; alu.IdDisc = disciplina.IdDisc; alu.NEstrelas = 0; Models.AlunosDB.save(alu); } else { MessageBox.Show("Preencha o campo Nome do Aluno."); } } catch { MessageBox.Show("Não foi possivel salvar o aluno.", "ERRO", MessageBoxButton.OK); } }
private void MenuItem_Tap(object sender, System.Windows.Input.GestureEventArgs e) { aux = 0; alunos = (sender as MenuItem).DataContext as Models.Alunos; AbrePagina("/UpdatePage.xaml"); }
private void lstAlunos_SelectionChanged(object sender, SelectionChangedEventArgs e) { aluno = (sender as ListBox).SelectedItem as Models.Alunos; tipoOperacao = etipoOperacao.stars; AbrePagina("/Views/AlunosPageStars.xaml"); }