Exemplo n.º 1
0
        public int SoLuongNhap()
        {
            int    x;
            string sql = "select SoLuong From Hang2 where MaHH = '" + QL_HoaDon.fmHD.cboMaHH.Text + "'";

            x = data.ExecuteScalar(sql);
            return(x);
        }
Exemplo n.º 2
0
        public int DoanhThuNgay(String theoNgay)
        {
            int      x;
            DateTime ngay = Convert.ToDateTime(theoNgay);
            string   sql  = "select sum(SoLuongBan*DonGiaBan) from DoanhThu2 where NgayLap = '" + ngay + "' group by NgayLap";

            x = data.ExecuteScalar(sql);
            return(x);
        }