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