Example #1
0
        public void Edit(long nonGlStockDetailId, [FromBody] MixERP.Net.Entities.Transactions.NonGlStockDetail nonGlStockDetail)
        {
            if (nonGlStockDetail == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.NonGlStockDetailRepository.Update(nonGlStockDetail, nonGlStockDetailId);
            }
            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));
            }
        }
 public void Get()
 {
     MixERP.Net.Entities.Transactions.NonGlStockDetail nonGlStockDetail = Fixture().Get(0);
     Assert.NotNull(nonGlStockDetail);
 }