Exemple #1
0
        public void Edit(long exchangeRateDetailId, [FromBody] MixERP.Net.Entities.Core.ExchangeRateDetail exchangeRateDetail)
        {
            if (exchangeRateDetail == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.ExchangeRateDetailRepository.Update(exchangeRateDetail, exchangeRateDetailId);
            }
            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));
            }
        }
Exemple #2
0
 public void Next()
 {
     MixERP.Net.Entities.Core.ExchangeRateDetail exchangeRateDetail = Fixture().GetNext(0);
     Assert.NotNull(exchangeRateDetail);
 }