public void Edit(int shippingPackageShapeId, [FromBody] MixERP.Net.Entities.Core.ShippingPackageShape shippingPackageShape) { if (shippingPackageShape == null) { throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed)); } try { this.ShippingPackageShapeRepository.Update(shippingPackageShape, shippingPackageShapeId); } 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 Get() { MixERP.Net.Entities.Core.ShippingPackageShape shippingPackageShape = Fixture().Get(0); Assert.NotNull(shippingPackageShape); }