public IActionResult DeleteInterest(int id, int interestId)
        {
            var userExists = _repo.DeleteInterests(id, interestId);

            if (userExists)
            {
                return(Ok(_repo.GetById(id).Interests));
            }
            return(NotFound("User not found."));
        }