コード例 #1
0
ファイル: bn_Product.cs プロジェクト: tampham47/juddy.vn
        public int Update(Guid productId, string name, double price, string description)
        {
            var re = (int)db.pb_Product_Update(
                productId,
                name,
                price,
                description).Single();

            return(re);
        }