示例#1
0
        public void Edit(int itemVariantId, [FromBody] MixERP.Net.Entities.Core.ItemVariant itemVariant)
        {
            if (itemVariant == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.ItemVariantRepository.Update(itemVariant, itemVariantId);
            }
            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.ItemVariant itemVariant = Fixture().GetNext(0);
     Assert.NotNull(itemVariant);
 }
示例#3
0
 public void Previous()
 {
     MixERP.Net.Entities.Core.ItemVariant itemVariant = Fixture().GetPrevious(0);
     Assert.NotNull(itemVariant);
 }