コード例 #1
0
        public int Update(Guid userContactId, int contactTypeId, string contactName)
        {
            var re = (int)db.pb_UserContact_Update(
                userContactId,
                contactTypeId,
                contactName).Single();

            return(re);
        }