コード例 #1
0
        public bool updateUser(ST_employee em, Int64 id)
        {
            var boolUpdate = _userDao.updateUser(em, id);

            if (boolUpdate)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }