예제 #1
0
 public ActionResult Store(SysStore model)
 {
     if (model != null && model.StoreID != 0)
     {
         _vmMsg = _dalSysStore.Update(model, Convert.ToInt32(Session["UserID"]));
     }
     else
     {
         _vmMsg = _dalSysStore.Save(model, Convert.ToInt32(Session["UserID"]));
     }
     return(Json(new { StoreID = _dalSysStore.GetStoreId(), msg = _vmMsg }));
 }