public bool Them_CT(string mahd, string masach, int soluong)
        {
            string sql = "insert into CHI_TIET_HOA_DON(SoLuong,MaSach,MaHD) values('" + soluong + "', '" + masach + "', '" + mahd + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #2
0
        public bool Xoa_NCC(string ma)
        {
            string sql = "delete from NHA_CUNG_CAP where MaNCC='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        public bool Them_NV(NhanVien nv)
        {
            string sql = "insert into NHAN_VIEN(TenNV,DiaChi,Sdt,MatKhau) values( N'" + nv.ten + "', N'" + nv.diachi + "', '" + nv.sdt + "', '" + nv.matkhau + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #4
0
        public bool Them_PN(PhieuNhap pn)
        {
            string sql = "insert into PHIEU_NHAP(MaNV,MaNCC,NgayNhap) values('" + pn.manv + "', '" + pn.mancc + "', '" + pn.ngaynhap + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #5
0
        public bool Sua_NCC(Person p)
        {
            string sql = "update NHA_CUNG_CAP set TenNCC=N'" + p.ten + "',DiaChi=N'" + p.diachi + "',Sdt='" + p.sdt + "' where MaNCC='" + p.ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #6
0
        public bool Sua_TL(TheLoai tl)
        {
            string sql = "update THE_LOAI set TenTL=N'" + tl.ten + "' where MaTL='" + tl.ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #7
0
        public bool Them_HD(HoaDon hd)
        {
            string sql = "insert into HOA_DON(MaNV,MaKH,NgayMua,KhachTra) values('" + hd.manv + "', '" + hd.makh + "', '" + hd.ngaymua + "','" + hd.khachtra + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #8
0
        public bool Xoa_NXB(string ma)
        {
            string sql = "delete from NHA_XUAT_BAN where MaNXB='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #9
0
        public bool Them_KH(Person p)
        {
            string sql = "insert into KHACH_HANG(TenKH,DiaChi,Sdt) values(N'" + p.ten + "', N'" + p.diachi + "', '" + p.sdt + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #10
0
        public bool Sua_Sach(Sach s)
        {
            string sql = "update SACH set TenSach=N'" + s.tensach + "',TacGia= N'" + s.tacgia + "',DonGiaNhap='" + s.dongianhap + "',DonGia='" + s.dongia + "',MaTL='" + s.matl + "',MaNXB='" + s.manxb + "' where MaSach='" + s.masach + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #11
0
        public bool Xoa_Sach(string ma)
        {
            string sql = "delete from SACH where MaSach='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #12
0
        public bool Them_Sach(Sach s)
        {
            string sql = "insert into SACH(TenSach,TacGia,DonGiaNhap,DonGia,SoLuongCon,MaTL,MaNXB) values(N'" + s.tensach + "', N'" + s.tacgia + "', '" + s.dongianhap + "', '" + s.dongia + "','" + s.soluongcon + "', '" + s.matl + "', '" + s.manxb + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #13
0
        public bool CapNhatSoLuongNhap(string ma, int sl)
        {
            string sql = "update SACH set SoLuongCon=SoLuongCon +'" + sl + "' where MaSach='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #14
0
        public bool Xoa_PN(string ma)
        {
            string sql = "delete from PHIEU_NHAP where MaPN='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        public bool Xoa_CT_MaHD(string mahd)
        {
            string sql = "delete from CHI_TIET_HOA_DON where MaHD='" + mahd + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #16
0
        public bool Sua_KH(Person p)
        {
            string sql = "update KHACH_HANG set TenKH=N'" + p.ten + "',DiaChi=N'" + p.diachi + "',Sdt='" + p.sdt + "' where MaKH='" + p.ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #17
0
        public bool Them_TL(TheLoai tl)
        {
            string sql = "insert into THE_LOAI(TenTL) values(N'" + tl.ten + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #18
0
        public bool Xoa_KH(string ma)
        {
            string sql = "delete from KHACH_HANG where MaKH='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #19
0
        public bool Xoa_TL(string ma)
        {
            string sql = "delete from THE_LOAI where MaTL='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #20
0
        public bool Them_NCC(Person p)
        {
            string sql = "insert into NHA_CUNG_CAP(TenNCC,DiaChi,Sdt) values(N'" + p.ten + "', N'" + p.diachi + "', '" + p.sdt + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #21
0
        public bool Xoa_HD(string ma)
        {
            string sql = "delete from HOA_DON where MaHD='" + ma + "'";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
        public bool Them_CT(string mapn, string masach, int soluong)
        {
            string sql = "insert into CHI_TIET_PHIEU_NHAP(SoLuong,MaSach,MaPN) values('" + soluong + "', '" + masach + "', '" + mapn + "')";

            if (XuLy.ExecuteNonQuery(sql) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }