public void Edit(int holidayId, [FromBody] MixERP.Net.Entities.Office.Holiday holiday) { if (holiday == null) { throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.MethodNotAllowed)); } try { this.HolidayRepository.Update(holiday, holidayId); } 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)); } }
public void Next() { MixERP.Net.Entities.Office.Holiday holiday = Fixture().GetNext(0); Assert.NotNull(holiday); }
public void Previous() { MixERP.Net.Entities.Office.Holiday holiday = Fixture().GetPrevious(0); Assert.NotNull(holiday); }