public ActionResult DeleteProduct(string productId)
        {
            db.DeleteContact(productId);

            var all = db.GetAllProduct();

            return(RedirectToAction("Index", all));
        }