Exemplo n.º 1
0
 public IActionResult AddStock([FromBody] Stock obj)
 {
     _stocks.AddStock(obj);
     return(RedirectToAction("Index"));
 }