public HttpResponseMessage UpdateParticipant(HttpRequestMessage request, [FromBody] SCDParticipant participantModel)
        {
            return(GetHttpResponse(request, () =>
            {
                var participant = _ScorecardService.UpdateSCDParticipant(participantModel);

                return request.CreateResponse <SCDParticipant>(HttpStatusCode.OK, participant);
            }));
        }