public void Edit(long stockTaxDetailId, [FromBody] MixERP.Net.Entities.Transactions.StockTaxDetail stockTaxDetail)
        {
            if (stockTaxDetail == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.StockTaxDetailRepository.Update(stockTaxDetail, stockTaxDetailId);
            }
            catch (UnauthorizedException)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.Forbidden));
            }
            catch (MixERPException ex)
            {
                throw new HttpResponseException(new HttpResponseMessage
                {
                    Content    = new StringContent(ex.Message),
                    StatusCode = HttpStatusCode.InternalServerError
                });
            }
            catch
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.InternalServerError));
            }
        }
Example #2
0
 public void Get()
 {
     MixERP.Net.Entities.Transactions.StockTaxDetail stockTaxDetail = Fixture().Get(0);
     Assert.NotNull(stockTaxDetail);
 }