public ActionResult ActivateInterest(int id)
        {
            var activatedInterest = _interestRepository.ActivateInterest(id);

            return(Ok(activatedInterest));
        }