public ActionResult Edit(tbl_Job_JobLevel tbl_job_joblevel)
 {
     if (ModelState.IsValid)
     {
         db.tbl_Job_JobLevel.Attach(tbl_job_joblevel);
         db.ObjectStateManager.ChangeObjectState(tbl_job_joblevel, EntityState.Modified);
         db.SaveChanges();
         return RedirectToAction("Index");
     }
     return View(tbl_job_joblevel);
 }
        public ActionResult Create(tbl_Job_JobLevel tbl_job_joblevel)
        {
            if (ModelState.IsValid)
            {
                db.tbl_Job_JobLevel.AddObject(tbl_job_joblevel);
                db.SaveChanges();
                return RedirectToAction("Index");
            }

            return View(tbl_job_joblevel);
        }
Пример #3
0
 /// <summary>
 /// Deprecated Method for adding a new object to the tbl_Job_JobLevel EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTotbl_Job_JobLevel(tbl_Job_JobLevel tbl_Job_JobLevel)
 {
     base.AddObject("tbl_Job_JobLevel", tbl_Job_JobLevel);
 }
Пример #4
0
 /// <summary>
 /// Create a new tbl_Job_JobLevel object.
 /// </summary>
 /// <param name="jrId">Initial value of the jrId property.</param>
 /// <param name="jrName_vi">Initial value of the jrName_vi property.</param>
 public static tbl_Job_JobLevel Createtbl_Job_JobLevel(global::System.Int32 jrId, global::System.String jrName_vi)
 {
     tbl_Job_JobLevel tbl_Job_JobLevel = new tbl_Job_JobLevel();
     tbl_Job_JobLevel.jrId = jrId;
     tbl_Job_JobLevel.jrName_vi = jrName_vi;
     return tbl_Job_JobLevel;
 }