public IActionResult UpdateClinkerService(Guid clinkerId, Guid serviceId)
        {
            var repo = new ClinkerRepository();

            var clinkerThatGotUpdated = repo.AddService(clinkerId, serviceId);

            return(Ok(clinkerThatGotUpdated));
        }