public IActionResult Post([FromBody] Models.Sortimat.Sh1Assembly5202Shift item)
        {
            try
            {
                if (!ModelState.IsValid)
                {
                    return(BadRequest(ModelState));
                }

                if (item == null)
                {
                    return(BadRequest());
                }

                this.OnSh1Assembly5202ShiftCreated(item);
                this.context.Sh1Assembly5202Shifts.Add(item);
                this.context.SaveChanges();

                return(Created($"odata/Sortimat/Sh1Assembly5202Shifts/{item.RowID}", item));
            }
            catch (Exception ex)
            {
                ModelState.AddModelError("", ex.Message);
                return(BadRequest(ModelState));
            }
        }
        public IActionResult PutSh1Assembly5202Shift(int key, [FromBody] Models.Sortimat.Sh1Assembly5202Shift newItem)
        {
            try
            {
                if (!ModelState.IsValid)
                {
                    return(BadRequest(ModelState));
                }

                if (newItem == null || (newItem.RowID != key))
                {
                    return(BadRequest());
                }

                this.OnSh1Assembly5202ShiftUpdated(newItem);
                this.context.Sh1Assembly5202Shifts.Update(newItem);
                this.context.SaveChanges();

                var itemToReturn = this.context.Sh1Assembly5202Shifts.Where(i => i.RowID == key);
                return(new ObjectResult(SingleResult.Create(itemToReturn)));
            }
            catch (Exception ex)
            {
                ModelState.AddModelError("", ex.Message);
                return(BadRequest(ModelState));
            }
        }
 partial void OnSh1Assembly5202ShiftUpdated(Models.Sortimat.Sh1Assembly5202Shift item);