示例#1
0
 private void dodajobecnosc_Click(object sender, RoutedEventArgs e)
 {
     try
     {
         Uzytkownik usr   = (Uzytkownik)uczen2.SelectedItem;
         int        czy   = obecnosc.SelectedIndex;
         string     datav = data2.SelectedDate.Value.ToShortDateString();
         DBhelp.DodajObecnosc(usr.id, czy, datav);
         dziennik.ItemsSource = DBhelp.ObecnosciKlasa(1);
     }
     catch (NullReferenceException exception)
     {
     }
 }
示例#2
0
        public void DodajObecnoscTest()
        {
            int test_reader = 2;

            Assert.IsTrue(test_reader == DBhelp.DodajObecnosc(3, 1, "2019-02-10") + DBhelp.DodajObecnosc(3, 1, "2019-02-09"));
        }