// PUT: api/AppClaims/5
        public IHttpActionResult Put(int?id, [FromBody] AppClaimEdit editedItem)
        {
            // Ensure that an "editedItem" is in the entity body
            if (editedItem == null)
            {
                return(BadRequest("Must send an entity body with the request"));
            }

            // Ensure that the id value in the URI matches the id value in the entity body
            if (id.GetValueOrDefault() != editedItem.Id)
            {
                return(BadRequest("Invalid data in the entity body"));
            }

            // Ensure that we can use the incoming data
            if (ModelState.IsValid)
            {
                // Attempt to update the item
                var changedItem = m.AppClaimEdit(editedItem);

                // Notice the ApiController convenience methods
                if (changedItem == null)
                {
                    // HTTP 400
                    return(BadRequest("Cannot edit the object"));
                }
                else
                {
                    // HTTP 200 with the changed item in the entity body
                    return(Ok <AppClaimBase>(changedItem));
                }
            }
            else
            {
                return(BadRequest(ModelState));
            }
        }
        // AppClaimEdit description, types and values, active
        public AppClaimBase AppClaimEdit(AppClaimEdit editedItem)
        {
            // Ensure that we can continue
            if (editedItem == null)
            {
                return(null);
            }

            // Attempt to fetch the object
            var storedItem = ds.AppClaims.Find(editedItem.Id);

            if (storedItem == null)
            {
                return(null);
            }
            else
            {
                ds.Entry(storedItem).CurrentValues.SetValues(editedItem);
                // The SetValues() method ignores missing properties and navigation properties
                ds.SaveChanges();

                return(Mapper.Map <AppClaimBase>(storedItem));
            }
        }