Exemplo n.º 1
0
        private void branchaddbtn_Click(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(txtlocation.Text) && combobr_adminList.SelectedIndex > 0)
            {
                int br_admin_id = itemid[combobr_adminList.SelectedIndex];
                ServiceBranch.BranchServiceClient c = new ServiceBranch.BranchServiceClient();
                ServiceBranch.Branch d = new ServiceBranch.Branch();
                d.Location    = txtlocation.Text;
                d.Br_Admin_ID = br_admin_id;
                d             = c.addBranch(d);
                if (d != null && d.Id > 0)
                {
                    MessageBox.Show("Add Sucessfully", "Branch Added !", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    Load_data();
                    AddPanel.Hide();
                    EditPanel.Hide();
                    List.Show();
                }
                else
                {
                    MessageBox.Show("Fail", "Fail !", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }

            else
            {
                MessageBox.Show("Fill all Fields", " Info !", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
Exemplo n.º 2
0
 private void editbranchbtn_Click(object sender, EventArgs e)
 {
     if (editlocationtxt.Text == String.Empty)
     {
         MessageBox.Show("Fill all Fields", "Required", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     else
     {
         if (editcomboadmin.SelectedIndex > 0)
         {
             B.Br_Admin_ID = itemid[editcomboadmin.SelectedIndex];
         }
         B.Location = editlocationtxt.Text;
         ServiceBranch.BranchServiceClient s    = new ServiceBranch.BranchServiceClient();
         ServiceBranch.Branchdata          data = new ServiceBranch.Branchdata();
         data = s.updateBranch(B);
         if (data != null)
         {
             MessageBox.Show("Edit Successfully", "Edit", MessageBoxButtons.OK, MessageBoxIcon.Information);
             Load_data();
             AddPanel.Hide();
             EditPanel.Hide();
             List.Show();
         }
         else
         {
             MessageBox.Show("Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
 }
Exemplo n.º 3
0
        private void editbranchbtn_Click(object sender, EventArgs e)
        {
            B.Br_Admin_ID = UserInfo.id;
            B.Location    = editlocationtxt.Text;
            ServiceBranch.BranchServiceClient s    = new ServiceBranch.BranchServiceClient();
            ServiceBranch.Branchdata          data = new ServiceBranch.Branchdata();
            data = s.updateBranch(B);
            if (data != null)
            {
                MessageBox.Show("Edit Successfully", "Edit", MessageBoxButtons.OK, MessageBoxIcon.Information);
                Load_data();
                List.Show();

                EditPanel.Hide();
            }
            else
            {
                MessageBox.Show("Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Exemplo n.º 4
0
        private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            DialogResult r = CustomMessage.Show("Operation", "Select Edit or Delete", "Edit", "Delete", "Cancel");

            if (r == DialogResult.Yes)
            {
                DataGridViewRow row = branchdata.Rows[e.RowIndex];

                B.Id = Int32.Parse(row.Cells["Id"].Value.ToString());

                B.Br_Admin_ID        = Int32.Parse(row.Cells["Br_Admin_ID"].Value.ToString());
                B.Location           = row.Cells["Location"].Value.ToString();
                editlocationtxt.Text = B.Location;
                EditPanel.Show();
                List.Hide();
                AddPanel.Hide();
            }
            else if (r == DialogResult.No)
            {
                DataGridViewRow row = branchdata.Rows[e.RowIndex];
                ServiceBranch.BranchServiceClient sb = new ServiceBranch.BranchServiceClient();


                ServiceBranch.Branchdata data = new ServiceBranch.Branchdata();
                data = sb.deleteBranch(Int32.Parse(row.Cells["Id"].Value.ToString()));

                if (data != null)
                {
                    MessageBox.Show("Deleted successfully", "Deleted", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    Load_data();
                }
            }
            else
            {
            }
        }