GetAllEmployee() public method

public GetAllEmployee ( ) : DataTable
return System.Data.DataTable
Ejemplo n.º 1
0
 public DataTable GetAllEmployee()
 {
     EmployeeDAL objCustomerDAL = new EmployeeDAL();
     try
     {
         return objCustomerDAL.GetAllEmployee();
     }
     catch(Exception exp)
     {
         throw (exp);
     }
 }