コード例 #1
0
        public void Edit(int variantId, [FromBody] MixERP.Net.Entities.Core.Variant variant)
        {
            if (variant == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.VariantRepository.Update(variant, variantId);
            }
            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
ファイル: VariantTests.cs プロジェクト: AYCHErp/AYCH-mixerp
 public void Next()
 {
     MixERP.Net.Entities.Core.Variant variant = Fixture().GetNext(0);
     Assert.NotNull(variant);
 }
コード例 #3
0
ファイル: VariantTests.cs プロジェクト: AYCHErp/AYCH-mixerp
 public void Previous()
 {
     MixERP.Net.Entities.Core.Variant variant = Fixture().GetPrevious(0);
     Assert.NotNull(variant);
 }