public void Post([FromBody] SubTopic topic) { if (ModelState.IsValid) { _service.AddSubTopic(topic); } else { BadRequest(); } }