public HttpResponseMessage DistributeMargin(int adminId, int clientId)
        {
            SuccessResponse response = new SuccessResponse();

            DistributionService.DistributeMargin(adminId, clientId);
            return(Request.CreateResponse(response));
        }