public void Edit(long eventId, [FromBody] MixERP.Net.Entities.Audit.LoggedAction loggedAction)
        {
            if (loggedAction == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.LoggedActionRepository.Update(loggedAction, eventId);
            }
            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.Audit.LoggedAction loggedAction = Fixture().GetNext(0);
     Assert.NotNull(loggedAction);
 }
예제 #3
0
 public void Previous()
 {
     MixERP.Net.Entities.Audit.LoggedAction loggedAction = Fixture().GetPrevious(0);
     Assert.NotNull(loggedAction);
 }