public ActionResult Create(SalaryTaxType salarytaxtype) { if (ModelState.IsValid) { salarytaxtypeRepository.InsertOrUpdate(salarytaxtype); salarytaxtypeRepository.Save(); return RedirectToAction("Index"); } else { return View(); } }
public void InsertOrUpdate(SalaryTaxType salarytaxtype) { if (salarytaxtype.SalaryTaxTypeID == default(int)) { // New entity context.SalaryTaxType.Add(salarytaxtype); } else { // Existing entity context.Entry(salarytaxtype).State = EntityState.Modified; } }
public ViewResult Search(SalaryTaxType searchSalaryTaxType) { if(searchSalaryTaxType!=null) { } return View("Index",salarytaxtypeRepository.All); }