public async Task <ActionResult <Formapagamento> > PostFormapagamento([FromForm] Formapagamento formapagamento) { _context.FormaPagamento.Add(formapagamento); await _context.SaveChangesAsync(); return(CreatedAtAction("GetFormapagamento", new { id = formapagamento.Id }, formapagamento)); }
public async Task <IActionResult> PutFormapagamento(int id, [FromForm] Formapagamento formapagamento) { if (id != formapagamento.Id) { return(BadRequest()); } _context.Entry(formapagamento).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!FormapagamentoExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }