示例#1
0
        public ActionResult QRCode(Guid id)
        {
            MerchantProfileBLL pb = new MerchantProfileBLL();
            var model             = pb.GetMerchantProfileSet(id);

            return(PartialView(model));
        }
示例#2
0
        public ActionResult Detail(Guid id)
        {
            MerchantProfileBLL pb = new MerchantProfileBLL();
            var model             = pb.GetMerchantProfileSet(id);

            model.CountryName = FoundationDB.CountryDb.GetById(model.CountryId).Name;
            return(View(model));
        }