Ejemplo n.º 1
0
 public static List<Employee> GetAllEmployeeBL()
 {
     List<Employee> employeeList = null;
     try
     {
         EmployeeDL employeeDL = new EmployeeDL();
         employeeList = employeeDL.GetAllEmployeeDAL();
     }
     catch (EmsException ex)
     {
         throw ex;
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return employeeList;
 }