public string PatchResource(string outcomeJson, OutcomesPatch outcomesPatchPatch)
        {
            if (string.IsNullOrEmpty(outcomeJson))
            {
                return(null);
            }

            if (outcomesPatchPatch == null)
            {
                return(null);
            }

            outcomesPatchPatch.SetDefaultValues();

            var updatedOutcome = _outcomePatchService.Patch(outcomeJson, outcomesPatchPatch);

            return(updatedOutcome);
        }