Esempio n. 1
0
        private void btnDanhSach_Click(object sender, EventArgs e)
        {
            CSVC_BUS t = new CSVC_BUS();

            dgvDSThietBi.DataSource = t.LoadCSVC();
            bingding();
        }
Esempio n. 2
0
        private void btnThemThietBi_Click(object sender, EventArgs e)
        {
            //lay du lieu tu form
            string id      = txtID.Text;
            string ten     = txtTen.Text;
            float  dongia  = float.Parse(txtDonGia.Text);
            int    soluong = int.Parse(txtSoLuong.Text);

            //thao tac them
            CSVC_DTO csvc = new CSVC_DTO(id, ten, dongia, soluong);
            CSVC_BUS t    = new CSVC_BUS();

            if (!t.ThemCSVC(csvc))
            {
                MessageBox.Show("Thêm không thành công. Vui lòng thử lại!");
            }

            //hien thi lai danh sach
            dgvDSThietBi.DataSource = t.LoadCSVC();
            bingding();

            //them vao bao cao chi
            DateTime      ngay      = DateTime.Now.Date;
            Baocaochi_DTO bc        = new Baocaochi_DTO(ngay, "Thiet bi", float.Parse(txtDonGia.Text) * int.Parse(txtSoLuong.Text));
            Baocaochi_BUS baocaochi = new Baocaochi_BUS();

            baocaochi.ThemBaoCao(bc);
        }
Esempio n. 3
0
        private void QLThietBi_Load(object sender, EventArgs e)
        {
            //chao
            labelChao.Text = DangNhap._manhanvien;

            CSVC_BUS t = new CSVC_BUS();

            dgvDSThietBi.DataSource = t.LoadCSVC();
            bingding();
        }
Esempio n. 4
0
        private void btnXoaThietBi_Click(object sender, EventArgs e)
        {
            //lay du lieu tu form
            string id      = txtID.Text;
            string ten     = txtTen.Text;
            float  dongia  = float.Parse(txtDonGia.Text);
            int    soluong = int.Parse(txtSoLuong.Text);

            //thao tac xoa
            CSVC_DTO csvc = new CSVC_DTO(id, ten, dongia, soluong);
            CSVC_BUS t    = new CSVC_BUS();

            if (!t.XoaCSVC(csvc))
            {
                MessageBox.Show("Xóa không thành công. Vui lòng thử lại!");
            }

            //hien thi lai danh sach
            dgvDSThietBi.DataSource = t.LoadCSVC();
            bingding();
        }