public ActionResult Create(ProductMaster p) { ctx.ProductMasters.Add(p); ctx.SaveChanges(); return RedirectToAction("Index"); }
public ActionResult Create() { var Product = new ProductMaster(); return View(Product); }