Update ProductController.cs
This commit is contained in:
parent
30e5e9cafd
commit
84e6bb9bc3
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user