private void iconbtnUpdate_Click(object sender, EventArgs e) { nhacc ncc = new nhacc(); ncc.mancc = txtMaNCC.Text; ncc.tenncc = txtTenNCC.Text; ncc.diachi = txtDiaChi.Text; ncc.sdt = txtSDT.Text; ncc.email = txtEmail.Text; //try //{ NhaCCDAO nhaCCDAO = new NhaCCDAO(); if (nhaCCDAO.Edit(ncc) == 1) { MessageBox.Show("Cập nhập thành công"); txtMaNCC.Text = ""; txtTenNCC.Text = ""; txtDiaChi.Text = ""; txtSDT.Text = ""; txtEmail.Text = ""; LoadData(); } else { MessageBox.Show("Cập nhập thất bại"); } }
public ActionResult Create(NhaCC sp) { if (ModelState.IsValid) { var dao = new NhaCCDAO(); bool id = dao.Insert(sp); if (id) { return RedirectToAction("Index", "NhaCungCap"); } else { ModelState.AddModelError("", "Tạo nhà cc thất bại!"); } } return View("Index"); }
private void iconbtnAdd_Click(object sender, EventArgs e) { nhacc ncc = new nhacc(); ncc.mancc = txt_mancc.Text; ncc.sdt = txt_sdt.Text; ncc.email = txt_email.Text; ncc.diachi = txt_diachi.Text; ncc.tenncc = txt_tenncc.Text; NhaCCDAO nhaCCDAO = new NhaCCDAO(); if (nhaCCDAO.create(ncc) == 1) { MessageBox.Show("Thêm thành công"); } else { MessageBox.Show("Thêm thất bại"); } }
private void iconbtnDelete_Click(object sender, EventArgs e) { string ID = txtMaNCC.Text; NhaCCDAO nhancc = new NhaCCDAO(); int result = nhancc.Delete(ID); if (result == 1) { MessageBox.Show("Xóa nhà cung cấp thành công"); LoadData(); } else { MessageBox.Show("Xóa nhà cung cấp thất bại"); } if ((idproduct == 0) && (name == "")) { LoadDataByResetButton(); } else { FindProduct(); } }
public ActionResult Edit(NhaCC sp) { try { if (ModelState.IsValid) { var dao = new NhaCCDAO(); var result = dao.Update(sp); if (result) { return RedirectToAction("Index", "NhaCungCap"); } else { ModelState.AddModelError("", "Cập nhật thất bại!"); } } return View("Index"); } catch { return View(); } }
public NhaCCBLO() { _error = ""; _nhaCCDTO = new NhaCCDTO(); _nhaCCDAO = new NhaCCDAO(); }
public static DataTable Search_tenNCC(NhaCCDTO ncc) { return(NhaCCDAO.Search_tenNCC(ncc)); }
public static void Delete_NCC(NhaCCDTO ncc) { NhaCCDAO.Delete_NCC(ncc); }
public static void Update_NCC(NhaCCDTO ncc) { NhaCCDAO.Update_NCC(ncc); }
public static void Insert_NCC(NhaCCDTO ncc) { NhaCCDAO.Insert_NCC(ncc); }
public static DataTable Load_DSNCC() { return(NhaCCDAO.Load_DSNCC()); }
// GET: Admin/NhaCC/Edit/5 public ActionResult Edit(string id) { var sp = new NhaCCDAO().ViewDetail(id); return View(sp); }
// GET: Admin/NhaCC public ActionResult Index() { NhaCCDAO db = new NhaCCDAO(); List<NhaCC> listsp = db.GetListNhaCC(); return View(listsp); }