示例#1
0
        // GET: EvaluationDetail
        public ActionResult DealFailYes()
        {
            if (string.IsNullOrEmpty((string)Session["DealerCode"]))
            {
                return(RedirectToAction("NewLogin", "Home"));
            }
            DataTable dt         = new DataTable();
            string    dealerCode = Session["DealerCode"].ToString();
            List <UCS_EvaluationVM> Select_PriceOfferNegociation = new List <UCS_EvaluationVM>();

            Select_PriceOfferNegociation = DetailEvaluationMethods.Get_DealFailYes(dealerCode);
            ViewBag.Evaluation           = Select_PriceOfferNegociation;
            return(View());
        }