private void detach_sh_certifications(sh_certification entity)
		{
			this.SendPropertyChanging();
			entity.sh_provider = null;
		}
 partial void Deletesh_certification(sh_certification instance);
 partial void Updatesh_certification(sh_certification instance);
 partial void Insertsh_certification(sh_certification instance);
		private void attach_sh_certifications(sh_certification entity)
		{
			this.SendPropertyChanging();
			entity.sh_level = this;
		}
        public ActionResult New(sh_certification model)
        {
            if (ModelState.IsValid)
            {
                Context.sh_certifications.InsertOnSubmit(model);
                Context.SubmitChanges();

                return RedirectToAction("Edit", new { id = model.CertificationID });
            }

            return View(getModel());
        }