public static bool Save(string pDisciplina)
        {
            Disciplinas disc = new Disciplinas();
            disc.Nome = pDisciplina;
            DisciplinasDB.save(disc);

            return true;
        }
Esempio n. 2
0
        public static string update(Disciplinas pDisc)
        {
            DataBase db = getDataBase();
            Disciplinas disciplina = (from d in db.Disciplinas
                                      where d.IdDisc == pDisc.IdDisc
                                      select d).First();
            disciplina.Nome = pDisc.Nome;
            db.SubmitChanges();

            return "Update feito com Sucesso!";
        }
Esempio n. 3
0
        public static string update(Disciplinas pDisc)
        {
            DataBase    db         = getDataBase();
            Disciplinas disciplina = (from d in db.Disciplinas
                                      where d.IdDisc == pDisc.IdDisc
                                      select d).First();

            disciplina.Nome = pDisc.Nome;
            db.SubmitChanges();

            return("Update feito com Sucesso!");
        }
Esempio n. 4
0
        private void listarAlunos(Models.Disciplinas disc)
        {
            List <Models.Alunos> alunos = Models.AlunosDB.getAlunos(disciplina.IdDisc);

            if (alunos.Count != 0)
            {
                lbxAlunos.ItemsSource = alunos;
            }
            else
            {
                lbxAlunos.ItemsSource = null;
            }
        }
Esempio n. 5
0
 public static string save(Disciplinas pDisc)
 {
     if (pDisc.Nome != "")
     {
         DataBase db = getDataBase();
         db.Disciplinas.InsertOnSubmit(pDisc);
         db.SubmitChanges();
     }
     else
     {
         return("Preencha o campo Nome.");
     }
     return(pDisc.Nome + " cadastrado com Sucesso!");
 }
Esempio n. 6
0
 public static string save(Disciplinas pDisc)
 {
     if (pDisc.Nome != "")
     {
         DataBase db = getDataBase();
         db.Disciplinas.InsertOnSubmit(pDisc);
         db.SubmitChanges();
     }
     else
     {
         return "Preencha o campo Nome.";
     }
     return pDisc.Nome+" cadastrado com Sucesso!";
 }
Esempio n. 7
0
 private void novo()
 {
     try
     {
         if (txtSubjects.Text != string.Empty)
         {
             Models.Disciplinas disc = new Models.Disciplinas();
             disc.Nome = txtSubjects.Text;
             Models.DisciplinasDB.save(disc);
         }
         else
         {
             MessageBox.Show("Preencha o campo disciplina.");
         }
     }
     catch
     {
         MessageBox.Show("Não foi possivel salvar a disciplina.", "ERRO", MessageBoxButton.OK);
     }
 }
Esempio n. 8
0
 private void novo()
 {
     try
     {
         if (txtSubjects.Text != string.Empty)
         {
             Models.Disciplinas disc = new Models.Disciplinas();
             disc.Nome = txtSubjects.Text;
             Models.DisciplinasDB.save(disc);
         }
         else
         {
             MessageBox.Show("Preencha o campo disciplina.");
         }
     }
     catch
     {
         MessageBox.Show("Não foi possivel salvar a disciplina.", "ERRO", MessageBoxButton.OK);
     }
 }
Esempio n. 9
0
 private void MenuItem_Tap(object sender, System.Windows.Input.GestureEventArgs e)
 {
     disciplina = (sender as MenuItem).DataContext as Models.Disciplinas;
     AbrePagina("/UpdatePage.xaml");
 }
Esempio n. 10
0
        private void lbxDisciplinas_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            disciplina = (sender as ListBox).SelectedItem as Models.Disciplinas;

            AbrePagina("/Views/AlunosPage.xaml");
        }
Esempio n. 11
0
 public static List<Alunos>Get(Disciplinas pDisciplina)
 {
     List<Alunos> alunos = AlunosDB.getAlunos(pDisciplina.IdDisc);
     return alunos;
 }