public IActionResult Create([FromBody] Estoque entity) { if (entity == null) { return(BadRequest("A entidade não pode ser null")); } if (!ModelState.IsValid) { return(BadRequest(ModelState)); } return(Ok(_repository.Create(entity))); }