Beispiel #1
0
        public HttpResponseMessage DeleteCustomerPriceMargin(int id)
        {
            SuccessResponse response = new SuccessResponse();

            CustomerPriceMarginsService.DeleteCustomerPriceMargin(id);
            return(Request.CreateResponse(response));
        }