public void Edit(int cashFlowSetupId, [FromBody] MixERP.Net.Entities.Core.CashFlowSetup cashFlowSetup)
        {
            if (cashFlowSetup == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.CashFlowSetupRepository.Update(cashFlowSetup, cashFlowSetupId);
            }
            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));
            }
        }
Пример #2
0
 public void Next()
 {
     MixERP.Net.Entities.Core.CashFlowSetup cashFlowSetup = Fixture().GetNext(0);
     Assert.NotNull(cashFlowSetup);
 }
Пример #3
0
 public void Previous()
 {
     MixERP.Net.Entities.Core.CashFlowSetup cashFlowSetup = Fixture().GetPrevious(0);
     Assert.NotNull(cashFlowSetup);
 }