private void btnThem_Click(object sender, EventArgs e) { LOAIGIAY LG = new LOAIGIAY(); int b = 0; for (int i = 1; i <= dataGridView1.RowCount; i++) { b += i; } txt_ml.Text = "L0" + (b + 1).ToString(); LG.MALOAI = "L0" + (b + 1).ToString(); LG.TENLOAI = txt_tenloai.Text.ToString(); if (g.ktkc_lg(LG) == true) { if (g.themlg(LG) == true) { MessageBox.Show("thêm thành công"); dataGridView1.DataSource = g.loadbang_loaigiay(); } else { MessageBox.Show("thất bại"); } } else { MessageBox.Show("trùng mã"); } }
public ActionResult EditLOAI(int id) { LOAIGIAY loai = db.LOAIGIAYs.SingleOrDefault(n => n.MaLoaiGiay == id); if (loai == null) { Response.StatusCode = 404; return(null); } return(View(loai)); }
public ActionResult DeleteLOAI(int id) { //Lay ra doi tuong sach can xoa theo ma LOAIGIAY loai = db.LOAIGIAYs.SingleOrDefault(n => n.MaLoaiGiay == id); ViewBag.MaLoaiGiay = loai.MaLoaiGiay; if (loai == null) { Response.StatusCode = 404; return(null); } return(View(loai)); }
public bool them(LOAIGIAY pmh) { try { da.LOAIGIAYs.InsertOnSubmit(pmh); da.SubmitChanges(); return(true); } catch { return(false); } }
public bool ktkc(LOAIGIAY ma) { var kt = (from k in da.LOAIGIAYs where k.MALOAI == ma.MALOAI select k).Count(); if (kt == 0) { return(true); } else { return(false); } }
public bool sua(LOAIGIAY pmh) { try { LOAIGIAY thanhvien = da.LOAIGIAYs.Where(t => t.MALOAI == pmh.MALOAI.ToString()).FirstOrDefault(); thanhvien.TENLOAI = pmh.TENLOAI; da.SubmitChanges(); return(true); } catch { return(false); } }
public ActionResult EditLOAI(int id, LOAIGIAY collection) { try { LOAIGIAY loai = db.LOAIGIAYs.SingleOrDefault(n => n.MaLoaiGiay == id); loai.TenLoaiGiay = collection.TenLoaiGiay; UpdateModel(loai); db.SubmitChanges(); } catch { return(View()); } return(RedirectToAction("ShoeCatogery")); }
public ActionResult ConfirmDeleteLOAI(int id) { //Lay ra doi tuong sach can xoa theo ma LOAIGIAY loai = db.LOAIGIAYs.SingleOrDefault(n => n.MaLoaiGiay == id); ViewBag.MaLoaiGiay = loai.MaLoaiGiay; if (loai == null) { Response.StatusCode = 404; return(null); } db.LOAIGIAYs.DeleteOnSubmit(loai); db.SubmitChanges(); return(RedirectToAction("ShoeCatogery")); }
private void btnsua_Click(object sender, EventArgs e) { LOAIGIAY LG = new LOAIGIAY(); LG.MALOAI = txt_ml.Text.ToString(); LG.TENLOAI = txt_tenloai.Text.ToString(); if (g.ktkc_lg(LG) == false) { if (g.sualg(LG) == true) { MessageBox.Show("sửa thành công"); dataGridView1.DataSource = g.loadbang_loaigiay(); } else { MessageBox.Show("thất bại"); } } else { MessageBox.Show("không tôn tại"); } }
private void buttonX1_Click(object sender, EventArgs e) { if (txt_Maloai.Text == "" || txt_tenloai.Text == "") { MessageBox.Show("không được để trống"); return; } var f = (from d in db.LOAIGIAYs where d.MALOAI == txt_Maloai.Text.ToString() select d.MALOAI); if (f.Count() == 0) { LOAIGIAY lg = new LOAIGIAY(); lg.MALOAI = txt_Maloai.Text.ToString(); lg.TENLOAI = txt_tenloai.Text.ToString(); db.LOAIGIAYs.InsertOnSubmit(lg); db.SubmitChanges(); insert(); } else { return; } }
public bool sualg(LOAIGIAY n) { return(dl.sua(n)); }
public bool themlg(LOAIGIAY n) { return(dl.them(n)); }
public bool ktkc_lg(LOAIGIAY n) { return(dl.ktkc(n)); }