public ActionResult<Product> Create(Category category, Product product) { product.Category = category; _context.Product.Add(product); _context.SaveChanges(); return product; }
public ActionResult <Category> Create(Category category) { _context.Category.Add(category); _context.SaveChanges(); return(category); }