Ejemplo n.º 1
0
        public async Task <UserCreateModel> GetUser(string Id)
        {
            try
            {
                tblUserProfile data = await Task.Run(() => UserOperations.GetUser(Id));

                return(data.ConvertToUser());
            }
            catch (Exception ex)
            {
                throw;
            }
        }