Ejemplo n.º 1
0
 public static AddPatient getInst(string shtrih)
 {
     if (instance == null)
     {
         instance = new AddPatient(shtrih);
     }
     return(instance);
 }
Ejemplo n.º 2
0
 public static AddPatient getInst(int id, string shtr)
 {
     if (instance == null)
     {
         instance = new AddPatient(id, shtr);
     }
     return(instance);
 }
 private void Button_Click(object sender, RoutedEventArgs e)
 {
     using (ModelBD md = new ModelBD())
     {
         var        pat        = md.Patients.Where(p => p.FIO.Equals(FIO.Text)).FirstOrDefault();
         AddPatient addPatient = new AddPatient(pat.ID, Shtr.Text);
         addPatient.Show();
     }
 }
Ejemplo n.º 4
0
 private void Button_Click(object sender, RoutedEventArgs e)
 {
     if (FIO.Text != "")
     {
         using (ModelBD md = new ModelBD())
         {
             var        pat        = md.Patients.Where(p => p.FIO.Equals(FIO.Text)).FirstOrDefault();
             AddPatient addPatient = AddPatient.getInst(pat.ID, Shtr.Text);
             addPatient.Show();
         }
     }
     else
     {
         MessageBox.Show("Введите имя пользователя!");
     }
 }
Ejemplo n.º 5
0
        private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            AddPatient addPatient = AddPatient.getInst(Shtr.Text);

            addPatient.Show();
        }
Ejemplo n.º 6
0
 public static void NullInst()
 {
     instance = null;
 }