Exemple #1
0
        public IActionResult Post([FromBody] Models.Sortimat.Sh1Assembly5202Batch item)
        {
            try
            {
                if (!ModelState.IsValid)
                {
                    return(BadRequest(ModelState));
                }

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

                this.OnSh1Assembly5202BatchCreated(item);
                this.context.Sh1Assembly5202Batches.Add(item);
                this.context.SaveChanges();

                return(Created($"odata/Sortimat/Sh1Assembly5202Batches/{item.RowID}", item));
            }
            catch (Exception ex)
            {
                ModelState.AddModelError("", ex.Message);
                return(BadRequest(ModelState));
            }
        }
Exemple #2
0
        public IActionResult PutSh1Assembly5202Batch(int key, [FromBody] Models.Sortimat.Sh1Assembly5202Batch newItem)
        {
            try
            {
                if (!ModelState.IsValid)
                {
                    return(BadRequest(ModelState));
                }

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

                this.OnSh1Assembly5202BatchUpdated(newItem);
                this.context.Sh1Assembly5202Batches.Update(newItem);
                this.context.SaveChanges();

                var itemToReturn = this.context.Sh1Assembly5202Batches.Where(i => i.RowID == key);
                return(new ObjectResult(SingleResult.Create(itemToReturn)));
            }
            catch (Exception ex)
            {
                ModelState.AddModelError("", ex.Message);
                return(BadRequest(ModelState));
            }
        }
Exemple #3
0
 partial void OnSh1Assembly5202BatchUpdated(Models.Sortimat.Sh1Assembly5202Batch item);