public void Edit(long attendanceId, [FromBody] MixERP.Net.Entities.HRM.Attendance attendance)
        {
            if (attendance == null)
            {
                throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed));
            }

            try
            {
                this.AttendanceRepository.Update(attendance, attendanceId);
            }
            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));
            }
        }
Esempio n. 2
0
 public void Get()
 {
     MixERP.Net.Entities.HRM.Attendance attendance = Fixture().Get(0);
     Assert.NotNull(attendance);
 }