コード例 #1
0
        public void Edit(string key, [FromBody] MixERP.Net.Entities.Config.ScrudFactory scrudFactory)
        {
            if (scrudFactory == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.ScrudFactoryRepository.Update(scrudFactory, key);
            }
            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.Config.ScrudFactory scrudFactory = Fixture().GetNext(string.Empty);
     Assert.NotNull(scrudFactory);
 }
コード例 #3
0
 public void First()
 {
     MixERP.Net.Entities.Config.ScrudFactory scrudFactory = Fixture().GetFirst();
     Assert.NotNull(scrudFactory);
 }