コード例 #1
0
        public bool SuaPhiShip(ref string err, int MaDonHang, decimal SL)
        {
            bool f = false;

            try
            {
                dbs.SP_SuaPhiShip(MaDonHang, SL);
                f = true;
            }
            catch (Exception e)
            {
                err = e.Message;
            }
            return(f);
        }