// lấy giá sản phẩm theo mã
        public int GetPriceProduct(string productId)
        {
            string price = billDal.GetProductPrice(productId).Rows[0][0].ToString();

            return(int.Parse(price.Substring(0, price.IndexOf("."))));
        }
Esempio n. 2
0
 public String GetProductPrice(string productId)
 {
     return(dal.GetProductPrice(productId).Rows[0][0].ToString());
 }