public void Edit(int policyId, [FromBody] MixERP.Net.Entities.Policy.VoucherVerificationPolicy voucherVerificationPolicy) { if (voucherVerificationPolicy == null) { throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed)); } try { this.VoucherVerificationPolicyRepository.Update(voucherVerificationPolicy, policyId); } 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 Next() { MixERP.Net.Entities.Policy.VoucherVerificationPolicy voucherVerificationPolicy = Fixture().GetNext(0); Assert.NotNull(voucherVerificationPolicy); }