public void Edit(int partyTypeId, [FromBody] MixERP.Net.Entities.Core.PartyType partyType)
        {
            if (partyType == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.PartyTypeRepository.Update(partyType, partyTypeId);
            }
            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.Core.PartyType partyType = Fixture().GetNext(0);
     Assert.NotNull(partyType);
 }
Example #3
0
 public void Previous()
 {
     MixERP.Net.Entities.Core.PartyType partyType = Fixture().GetPrevious(0);
     Assert.NotNull(partyType);
 }