public EmployeeController() { _employeedbContext = new DAL_Employee(); }
public int updateEmployeeORCL(Employee emp, ref string strReturnCode, ref string strReturnMess) { return(DAL_Employee.updateEmployeeORCL(emp, ref strReturnCode, ref strReturnMess)); }
/// <summary> /// ORACLE /// </summary> public DataTable getEmployeeORCL(Employee emp) { return(DAL_Employee.getEmployeeORCL(emp)); }
public int insertEmployeeORCL(Employee emp, ref string strReturnCode, ref string strReturnMess) { return(DAL_Employee.insertEmployeeORCL(emp, ref strReturnCode, ref strReturnMess)); }
public int insertEmployee(Employee emp) { return(DAL_Employee.insertEmployee(emp)); }