// 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(".")))); }
public String GetProductPrice(string productId) { return(dal.GetProductPrice(productId).Rows[0][0].ToString()); }