Beispiel #1
0
        private void buttonAdd_Click(object sender, EventArgs e)
        {
            OrganisationsSet organisationsSet = new OrganisationsSet();

            organisationsSet.Name   = textBoxName.Text;
            organisationsSet.Adress = textBoxAdress.Text;
            organisationsSet.Phone  = textBoxPhone.Text;
            Program.bdad.OrganisationsSet.Add(organisationsSet);
            Program.bdad.SaveChanges();
            ShowOrganisation();
        }
Beispiel #2
0
 private void buttonEdit_Click(object sender, EventArgs e)
 {
     if (listViewOrganisation.SelectedItems.Count == 1)
     {
         OrganisationsSet organisationsSet = listViewOrganisation.SelectedItems[0].Tag as OrganisationsSet;
         organisationsSet.Name   = textBoxName.Text;
         organisationsSet.Adress = textBoxAdress.Text;
         organisationsSet.Phone  = textBoxPhone.Text;
         Program.bdad.SaveChanges();
         ShowOrganisation();
     }
 }
Beispiel #3
0
 private void listViewOrganisation_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (listViewOrganisation.SelectedItems.Count == 1)
     {
         OrganisationsSet organisationsSet = listViewOrganisation.SelectedItems[0].Tag as OrganisationsSet;
         textBoxName.Text   = organisationsSet.Name;
         textBoxAdress.Text = organisationsSet.Adress;
         textBoxPhone.Text  = organisationsSet.Phone;
     }
     else
     {
         textBoxName.Text   = "";
         textBoxAdress.Text = "";
         textBoxPhone.Text  = "";
     }
 }
Beispiel #4
0
 private void buttonDel_Click(object sender, EventArgs e)
 {
     try
     {
         if (listViewOrganisation.SelectedItems.Count == 1)
         {
             OrganisationsSet organisationsSet = listViewOrganisation.SelectedItems[0].Tag as OrganisationsSet;
             Program.bdad.OrganisationsSet.Remove(organisationsSet);
             Program.bdad.SaveChanges();
             ShowOrganisation();
         }
         textBoxName.Text   = "";
         textBoxAdress.Text = "";
         textBoxPhone.Text  = "";
     }
     catch
     {
         MessageBox.Show("Невозможно удалить, эта запись используется!", "Ошибка!", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }