Beispiel #1
0
        public void Edit(long employeeQualificationId, [FromBody] MixERP.Net.Entities.HRM.EmployeeQualification employeeQualification)
        {
            if (employeeQualification == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.EmployeeQualificationRepository.Update(employeeQualification, employeeQualificationId);
            }
            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));
            }
        }
Beispiel #2
0
 public void Get()
 {
     MixERP.Net.Entities.HRM.EmployeeQualification employeeQualification = Fixture().Get(0);
     Assert.NotNull(employeeQualification);
 }