コード例 #1
0
 public JsonResult Post(Game_Award _t)
 {
     if (WMFactory.GLGameAward.Insert(_t))
         return Json(ResultMsg.Success("新增成功!"));
     else
         return Json(ResultMsg.Failure("新增失败,请您重试!"));
 }
コード例 #2
0
 public JsonResult Delete(Game_Award _t)
 {
     if (WMFactory.GLGameAward.Delete(s => s.Id == _t.Id ))
         return Json(ResultMsg.Success("删除成功!"));
     else
         return Json(ResultMsg.Failure("删除失败,请您重试!"));
 }
コード例 #3
0
 public JsonResult Put(Game_Award _t)
 {
     IGLGameAwardService service = WMFactory.GLGameAward;
     Game_Award entity = service.GetById(_t.Id.ToString());
     entity = AutoMapper<Game_Award, Game_Award>.Convert(_t, entity);
     if (service.Update(entity))
         return Json(ResultMsg.Success("更新成功!"));
     else
         return Json(ResultMsg.Failure("更新失败,请您重试!"));
 }