Example #1
0
        public void Edit(string httpActionCode, [FromBody] MixERP.Net.Entities.Policy.HttpAction httpAction)
        {
            if (httpAction == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.HttpActionRepository.Update(httpAction, httpActionCode);
            }
            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));
            }
        }
Example #2
0
 public void Next()
 {
     MixERP.Net.Entities.Policy.HttpAction httpAction = Fixture().GetNext(string.Empty);
     Assert.NotNull(httpAction);
 }
Example #3
0
 public void First()
 {
     MixERP.Net.Entities.Policy.HttpAction httpAction = Fixture().GetFirst();
     Assert.NotNull(httpAction);
 }