コード例 #1
0
ファイル: bn_Location.cs プロジェクト: tampham47/juddy.vn
        public int Update(Guid locationId, double latitude, double longitude, string address)
        {
            var re = (int)db.pb_Location_Update(
                locationId,
                latitude,
                longitude,
                address).Single();

            return(re);
        }