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