Esempio n. 1
0
        public async Task <ActionResult <PiecesJointesI> > PostPiecesJointesI(PiecesJointesI piecesJointesI)
        {
            _context.piecesJointesIs.Add(piecesJointesI);
            await _context.SaveChangesAsync();

            return(CreatedAtAction("GetPiecesJointesI", new { id = piecesJointesI.Id }, piecesJointesI));
        }
Esempio n. 2
0
        public async Task <IActionResult> PutPiecesJointesI(int id, PiecesJointesI piecesJointesI)
        {
            if (id != piecesJointesI.Id)
            {
                return(BadRequest());
            }

            _context.Entry(piecesJointesI).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!PiecesJointesIExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }