public IActionResult postQuestion([FromBody] Question newQuestion = null) { if (newQuestion != null) { questionFacade.postQuestion(newQuestion); } return(Created("", newQuestion)); }
public IActionResult postQuestion([FromBody] Question newQuestion) { return(Created("", questionFacade.postQuestion(newQuestion))); }