Skip to content

Instantly share code, notes, and snippets.

@ErShubhamKGupta
Created September 25, 2020 11:05
Show Gist options
  • Save ErShubhamKGupta/f8c09e97033c2f621a9e59bd6829b4e2 to your computer and use it in GitHub Desktop.
Save ErShubhamKGupta/f8c09e97033c2f621a9e59bd6829b4e2 to your computer and use it in GitHub Desktop.
EmployeeController.cs
// GET: Employee/AddOrEdit
public IActionResult AddOrEdit(int Id=0)
{
if(Id==0)
return View(new Employee());
else
return View(_context.Employees.Find(Id));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment