public IActionResult Post([FromBody] Models.Sortimat.Sh2Assembly5308PerShiftPerCycle item) { try { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (item == null) { return(BadRequest()); } this.OnSh2Assembly5308PerShiftPerCycleCreated(item); this.context.Sh2Assembly5308PerShiftPerCycles.Add(item); this.context.SaveChanges(); return(Created($"odata/Sortimat/Sh2Assembly5308PerShiftPerCycles/{item.RowID}", item)); } catch (Exception ex) { ModelState.AddModelError("", ex.Message); return(BadRequest(ModelState)); } }
public IActionResult PutSh2Assembly5308PerShiftPerCycle(int key, [FromBody] Models.Sortimat.Sh2Assembly5308PerShiftPerCycle newItem) { try { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (newItem == null || (newItem.RowID != key)) { return(BadRequest()); } this.OnSh2Assembly5308PerShiftPerCycleUpdated(newItem); this.context.Sh2Assembly5308PerShiftPerCycles.Update(newItem); this.context.SaveChanges(); var itemToReturn = this.context.Sh2Assembly5308PerShiftPerCycles.Where(i => i.RowID == key); return(new ObjectResult(SingleResult.Create(itemToReturn))); } catch (Exception ex) { ModelState.AddModelError("", ex.Message); return(BadRequest(ModelState)); } }
partial void OnSh2Assembly5308PerShiftPerCycleUpdated(Models.Sortimat.Sh2Assembly5308PerShiftPerCycle item);