コード例 #1
0
        public void Edit(long loginId, [FromBody] MixERP.Net.Entities.Audit.Login login)
        {
            if (login == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.LoginRepository.Update(login, loginId);
            }
            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.Login login = Fixture().GetNext(0);
     Assert.NotNull(login);
 }
コード例 #3
0
 public void Previous()
 {
     MixERP.Net.Entities.Audit.Login login = Fixture().GetPrevious(0);
     Assert.NotNull(login);
 }