Exemplo n.º 1
0
        public async Task <ActionResult <Ofise> > PostOfise(Ofise ofise)
        {
            _context.Ofise.Add(ofise);
            await _context.SaveChangesAsync();

            return(CreatedAtAction("GetOfise", new { id = ofise.IdOfis }, ofise));
        }
Exemplo n.º 2
0
        public async Task <IActionResult> PutOfise(int id, Ofise ofise)
        {
            if (id != ofise.IdOfis)
            {
                return(BadRequest());
            }

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

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

            return(NoContent());
        }