public ActionResult Create([FromBody] Medicamentos medicamento) { if (!ModelState.IsValid) { return(BadRequest()); } else { _medicamentoService.AddMedicamento(medicamento); return(CreatedAtRoute("getMedicamento", new{ id = medicamento.id }, medicamento)); } }