Beispiel #1
0
        public void Ozenki(object sender, RoutedEventArgs e)
        {
            int[] Palb = Baza.GetRemarksStudent(detka.ID);

            string Smotri = "";

            foreach (int i in Palb)
            {
                Smotri += i.ToString() + " ";
            }
            MessageBox.Show(Smotri);
        }
Beispiel #2
0
        public void Showme(object sender, RoutedEventArgs e)
        {
            string s = "";

            int[] ISeeMyChild = Baza.GetRemarksStudent(MamkaPapka.ID_child);

            foreach (int i in ISeeMyChild)
            {
                s += i.ToString() + " ";
            }
            MessageBox.Show(s);
        }
Beispiel #3
0
 public int[] LookMarks()
 {
     return(Baza.GetRemarksStudent(ID));
 }
Beispiel #4
0
 public int[] Look() // сделать возвр. тип int[]
 {
     return(Baza.GetRemarksStudent(ID_child));
 }