public static AddPatient getInst(string shtrih) { if (instance == null) { instance = new AddPatient(shtrih); } return(instance); }
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(); } }
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("Введите имя пользователя!"); } }
private void Button_Click_1(object sender, RoutedEventArgs e) { AddPatient addPatient = AddPatient.getInst(Shtr.Text); addPatient.Show(); }
public static void NullInst() { instance = null; }