Example #1
0
        public ActionResult Confirm(string id)
        {
            ITradeExamine IT = new TradeExamineMethod();

            IT.Confirm(id);
            return(Json("反馈成功"));
        }
Example #2
0
        public void NoPass(Array arr)
        {
            var           str    = arr.GetValue(0).ToString();
            var           getArr = str.Split(',');
            ITradeExamine IE     = new TradeExamineMethod();

            IE.NoPass(getArr);
        }
Example #3
0
        public ActionResult VisaAdd(TradeExamineViewPage1 VisaAdd)
        {
            ITradeExamine IT = new TradeExamineMethod();

            return(Json(IT.Add(VisaAdd)));
        }
Example #4
0
        public ActionResult CheckConfirm(string id)
        {
            ITradeExamine IT = new TradeExamineMethod();

            return(Json(IT.TradeExamineDetail(id)));
        }
Example #5
0
        public ActionResult TradeExamineDetail1(string id)
        {
            ITradeExamine IT = new TradeExamineMethod();

            return(Json(IT.TradeInfoDetail(id), JsonRequestBehavior.AllowGet));
        }
Example #6
0
        public ActionResult TradeExamineIndex1(string searchString, string Year, int?page)
        {
            ITradeExamine IT = new TradeExamineMethod();

            return(Json(IT.Index(searchString, Year, page), JsonRequestBehavior.AllowGet));
        }