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