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) { } }
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")); }