public async Task <ActionResult <Competencia> > AbrirCompetencia(CompetenciaApi model) { if (ModelState.IsValid) { await _context.InsertAsync(model.ToModel()); return(Ok()); } return(BadRequest()); }
public async Task <ActionResult <Competencia> > FecharCompetencia(CompetenciaApi model) { if (ModelState.IsValid) { await FechamentoOrcamento(model); await _context.UpdateChangesAsync(model.ToModel()); return(Ok()); } return(BadRequest()); }