예제 #1
0
 public ActionResult AccountDetail(long id)
 {
     Entities.AccountInfo account = AccountApplication.GetAccount(id);
     if (account.ShopId != CurrentSellerManager.ShopId)
     {
         throw new MallException("不存在该结算信息" + id);
     }
     return(View(account));
 }
예제 #2
0
        public ActionResult Detail(long id)
        {
            Entities.AccountInfo account = AccountApplication.GetAccount(id);

            return(View(account));
        }