public void AddEmployee(TAEmployee Emp) { if (ModelState.IsValid) { uow.TAEmployeeRepo.Add(Emp); } }
public ActionResult Index(TAEmployee _newEmp) { return(View()); }