public ActionResult CreateClinkerInterest(ClinkerInterests clinkerInterestObject)
        {
            var newClinkerInterest = InterestRepository.AddClinkerInterest(clinkerInterestObject);

            return(Created($"api/createdInterest/{newClinkerInterest.Id}", newClinkerInterest));
        }