public IActionResult AddNewStock([FromBody] Stock data) { var dataInsertResult = _stockService.AddNewStock(data); return(Ok(dataInsertResult)); }