public void Edit(long storePolicyDetailId, [FromBody] MixERP.Net.Entities.Policy.StorePolicyDetail storePolicyDetail) { if (storePolicyDetail == null) { throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed)); } try { this.StorePolicyDetailRepository.Update(storePolicyDetail, storePolicyDetailId); } 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.StorePolicyDetail storePolicyDetail = Fixture().GetNext(0); Assert.NotNull(storePolicyDetail); }
public void Previous() { MixERP.Net.Entities.Policy.StorePolicyDetail storePolicyDetail = Fixture().GetPrevious(0); Assert.NotNull(storePolicyDetail); }