using Microsoft.AspNetCore.Mvc; using GrossesMitainesAPI.Models; using System.Linq; using GrossesMitainesAPI.Data; using Microsoft.Extensions.Logging; namespace GrossesMitainesAPI.Controllers; [ApiController, Route("api/[controller]")] public class ProductController : Controller { private readonly ILogger _logger; private readonly InventoryContext _context; public ProductController(ILogger logger, InventoryContext context) { _logger = logger; _context = context; } [HttpGet(Name = "Product")] public Product Get(int id) { Product prod; try { prod = _context.Products.Where(x => x.Id == id).First(); } catch (Exception e) { _logger.LogError(8, e.Message); prod = new Product(); } return prod; } [HttpPost(Name = "Product")] public void Post(Product prod) { prod.Id = _context.Products.Count(); try { _context.Products.Add(prod); } catch (Exception e) { _logger.LogError(8, e.Message); } } }