コード例 #1
0
        public async Task <bool> Update(eSWIS.Logic.UsrProfile.Container.USRPROFILE input)
        {
            bool res = false;

            try
            {
                var repo = new Plexform.Logic.UserProfileLogic();

                res = await repo.Update(input);
            }
            catch (Exception ex)
            {
                var temp = ex.ToString();
            }

            return(ObjectMapper.Map <bool>(res));
        }