Esempio n. 1
0
        public HttpResponseMessage DeleteIncomeProductsTableALT(HttpRequestMessage request, [FromBody] int productid)
        {
            return(GetHttpResponse(request, () =>
            {
                HttpResponseMessage response = null;

                // not that calling the WCF service here will authenticate access to the data
                IncomeProductsTableALT ipt = _MPRIncomeService.Getincomeproducttablealt(productid);

                if (ipt != null)
                {
                    _MPRIncomeService.Deleteincomeproducttablealt(productid);

                    response = request.CreateResponse(HttpStatusCode.OK);
                }
                else
                {
                    response = request.CreateErrorResponse(HttpStatusCode.NotFound, "No IncomeProduct found under the productid.");
                }

                return response;
            }));
        }