public ActionResult Edit(int ScheduleTaskId, Models.SenScheduleTask collection) { try { int outputId = _dataobject.Update(collection); return(RedirectToAction(this.ActionReturn())); } catch (Exception ex) { Services.GlobalErrors.Parse(ModelState, _dataobject.Errors, ex); return(PartialView(this._updateview, collection)); } }
public int Insert(Models.SenScheduleTask data) { try { this.Validate(data); this._db.SenScheduleTasks.Add(data); this._db.SaveChanges(); return(0); } catch (Exception) { throw; } }
public int Update(Models.SenScheduleTask data) { try { this.Validate(data); this._db.Entry(data).State = System.Data.Entity.EntityState.Modified; this._db.SaveChanges(); return(data.ScheduleTaskId); } catch (Exception) { throw; } }