Beispiel #1
0
 public IActionResult AddProductBackToStock(int id, int StockAmount)
 {
     _ss.AddBackToStock(id, StockAmount);
     return(View("views/profile/administrator/Stock.cshtml", _ss.GetAllProducts()));
 }