public bool UpdateUser(User user)
        {
            try
            {
                _ctx.Update(user);
                return(true);
            }
            catch (DbUpdateException)
            {
                return(false);

                throw;
            }
        }