public static int AddEmployee(Employee data) { return(EmployeeDB.Add(data)); }
public static int AddEmployee(Employee employee) { return(EmployeeDB.Add(employee)); }
public JsonResult Add(Employee emp) { return(Json(empDB.Add(emp), JsonRequestBehavior.AllowGet)); }
public JsonResult Insertar(Employee empleado) { return(Json(empDB.Add(empleado), JsonRequestBehavior.AllowGet)); }