Update ProductController.cs

This commit is contained in:
MarcEricMartel 2022-10-18 08:01:16 -07:00
parent 30e5e9cafd
commit 84e6bb9bc3

View File

@ -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);
}
}
}