Update ProductController.cs
This commit is contained in:
		| @@ -186,4 +186,14 @@ public class ProductController : Controller { | ||||
|             _logger.LogError(8, e.Message); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     [HttpDelete(Name = "Product")] | ||||
|     public void DeleteProduct(int id) { | ||||
|         try { | ||||
|             _context.Products.Remove(_context.Products.Where(x => x.Id == id).First()); | ||||
|             _context.SaveChanges(); | ||||
|         } catch (Exception e) { | ||||
|             _logger.LogError(8, e.Message); | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user