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