public ActionResult Create(FormCollection collection) { var model = new DeviceServiceRemarkModel(); model.DeviceServiceTime = DateTime.Now; this.TryUpdateModel <DeviceServiceRemarkModel>(model); this.IDKLManagerService.InsertServiceRemark(model); return(this.RefreshParent()); }
public ActionResult Create() { var model = new DeviceServiceRemarkModel(); return(View("Edit", model)); }