Exemple #1
0
        public void Edit(string key, [FromBody] MixERP.Net.Entities.Config.Mixerp mixerp)
        {
            if (mixerp == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.MixerpRepository.Update(mixerp, 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));
            }
        }
Exemple #2
0
 public void Next()
 {
     MixERP.Net.Entities.Config.Mixerp mixerp = Fixture().GetNext(string.Empty);
     Assert.NotNull(mixerp);
 }
Exemple #3
0
 public void First()
 {
     MixERP.Net.Entities.Config.Mixerp mixerp = Fixture().GetFirst();
     Assert.NotNull(mixerp);
 }