예제 #1
0
        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");
            }
        }
예제 #2
0
        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");
        }
예제 #3
0
        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");
            }
        }
예제 #4
0
        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();
            }
        }
예제 #5
0
 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();
     }
 }
예제 #6
0
파일: NhaCCBLO.cs 프로젝트: yugjnet/qlbh
 public NhaCCBLO()
 {
     _error    = "";
     _nhaCCDTO = new NhaCCDTO();
     _nhaCCDAO = new NhaCCDAO();
 }
예제 #7
0
 public static DataTable Search_tenNCC(NhaCCDTO ncc)
 {
     return(NhaCCDAO.Search_tenNCC(ncc));
 }
예제 #8
0
 public static void Delete_NCC(NhaCCDTO ncc)
 {
     NhaCCDAO.Delete_NCC(ncc);
 }
예제 #9
0
 public static void Update_NCC(NhaCCDTO ncc)
 {
     NhaCCDAO.Update_NCC(ncc);
 }
예제 #10
0
 public static void Insert_NCC(NhaCCDTO ncc)
 {
     NhaCCDAO.Insert_NCC(ncc);
 }
예제 #11
0
 public static DataTable Load_DSNCC()
 {
     return(NhaCCDAO.Load_DSNCC());
 }
예제 #12
0
 // GET: Admin/NhaCC/Edit/5
 public ActionResult Edit(string id)
 {
     var sp = new NhaCCDAO().ViewDetail(id);
     return View(sp);
 }
예제 #13
0
 // GET: Admin/NhaCC
 public ActionResult Index()
 {
     NhaCCDAO db = new NhaCCDAO();
     List<NhaCC> listsp = db.GetListNhaCC();
     return View(listsp);
 }