public ucLapPhieuNhapHang() { InitializeComponent(); sanPham = new SanPhamController(); nhacungcap = new NhacungcapController(); phieuNhap = new PhieuNhapController(); DataTable dt; dt = sanPham.GetDanhSachDonVi(); foreach (DataRow row in dt.Rows) { cbbDonVi.Items.Add(row[0]); } dt = nhacungcap.GetAllNhacungcap(); foreach (DataRow row in dt.Rows) { cbbTenNhaCC.Items.Add(row[1]); } }
private void ucQlnhacungcap_Load(object sender, EventArgs e) { Disable(); dtgNcc.DataSource = nhacungcap.GetAllNhacungcap(); }