public JsonResult Post(ITSM_Engineer _t) { if (WMFactory.ITSMEngineer.Insert(_t)) return Json(ResultMsg.Success("新增成功!")); else return Json(ResultMsg.Failure("新增失败,请您重试!")); }
public JsonResult Put(ITSM_Engineer _t) { IITSMEngineerService service = WMFactory.ITSMEngineer; ITSM_Engineer entity = service.GetById(_t.Id.ToString()); entity = AutoMapper<ITSM_Engineer, ITSM_Engineer>.Convert(_t, entity); if (service.Update(entity)) return Json(ResultMsg.Success("更新成功!")); else return Json(ResultMsg.Failure("更新失败,请您重试!")); }
public JsonResult Delete(ITSM_Engineer _t) { if (WMFactory.ITSMEngineer.Delete(s => s.Id == _t.Id)) return Json(ResultMsg.Success("删除成功!")); else return Json(ResultMsg.Failure("删除失败,请您重试!")); }