public ActionResult ProductDelete(string id)
        {
            SQLDataAccess da    = new SQLDataAccess();
            ProductModel  model = new ProductModel();

            model = da.DeleteProduct(id);
            return(Json(model.Msg, JsonRequestBehavior.AllowGet));
        }