Exemplo n.º 1
0
        public void Edit(int leaveTypeId, [FromBody] MixERP.Net.Entities.HRM.LeaveType leaveType)
        {
            if (leaveType == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.LeaveTypeRepository.Update(leaveType, leaveTypeId);
            }
            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));
            }
        }
Exemplo n.º 2
0
 public void Get()
 {
     MixERP.Net.Entities.HRM.LeaveType leaveType = Fixture().Get(0);
     Assert.NotNull(leaveType);
 }