Exemple #1
0
 public ActionResult Edit(OrderBuyerType obj)
 {
     try
     {
         NSession.Update(obj);
         NSession.Flush();
     }
     catch (Exception ee)
     {
         return(Json(new { IsSuccess = false, ErrorMsg = "出错了" }));
     }
     return(Json(new { IsSuccess = true }));
 }
Exemple #2
0
        /// <summary>
        /// 根据Id获取
        /// </summary>
        /// <param name="Id"></param>
        /// <returns></returns>
        public OrderBuyerType GetById(int Id)
        {
            OrderBuyerType obj = NSession.Get <OrderBuyerType>(Id);

            if (obj == null)
            {
                throw new Exception("返回实体为空");
            }
            else
            {
                return(obj);
            }
        }
Exemple #3
0
 public JsonResult DeleteConfirmed(int id)
 {
     try
     {
         OrderBuyerType obj = GetById(id);
         NSession.Delete(obj);
         NSession.Flush();
     }
     catch (Exception ee)
     {
         return(Json(new { IsSuccess = false, ErrorMsg = "出错了" }));
     }
     return(Json(new { IsSuccess = true }));
 }
Exemple #4
0
        public ActionResult Edit(int id)
        {
            OrderBuyerType obj = GetById(id);

            return(View(obj));
        }