Exemplo n.º 1
0
        private void btnXoa_Click(object sender, EventArgs e)
        {
            var kt = MessageBox.Show("Bạn có muốn xóa NCC này không?",
                                     "Thông Báo",
                                     MessageBoxButtons.YesNoCancel
                                     , MessageBoxIcon.Warning
                                     );

            if (kt == DialogResult.Yes)
            {
                try
                {
                    NhaCungCap        nCC  = GetInputForm();
                    NhaCungCapService nccs = new NhaCungCapService();
                    nccs.Delete(nCC);
                    LoadDgvNCC();
                    SetInputForm(new NhaCungCap());
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message, "Lỗi",
                                    MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
        }
Exemplo n.º 2
0
        private void LoadCBBNhaCungCap()
        {
            NhaCungCapService nhaCungCapService = new NhaCungCapService();

            cbbNhaCungCap.DataSource    = nhaCungCapService.GetAll();
            cbbNhaCungCap.ValueMember   = "MaNCC";
            cbbNhaCungCap.DisplayMember = "TenCongTy";
        }
Exemplo n.º 3
0
 private void btnThem_Click(object sender, EventArgs e)
 {
     try
     {
         NhaCungCap        nCC  = GetInputForm();
         NhaCungCapService nccs = new NhaCungCapService();
         nccs.Add(nCC);
         LoadDgvNCC();
         SetInputForm(new NhaCungCap());
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Lỗi",
                         MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Exemplo n.º 4
0
        private void LoadDgvNCC()
        {
            NhaCungCapService nCCS = new NhaCungCapService();

            dgvNCC.DataSource = nCCS.GetAll();
        }