public HttpResponseMessage DistributeAllMargins(int adminId)
        {
            SuccessResponse response = new SuccessResponse();

            DistributionService.DistributeAllMargins(adminId);
            return(Request.CreateResponse(response));
        }