Esempio n. 1
0
 public void updateEmployeesInformation()
 {
     if (customers != null)
     {
         DBData.updateDateSet();
     }
     employees = DBData.getEmployeesInformation();
     if (employeeInfChangeEvent != null)
     {
         employeeInfChangeEvent();
     }
 }
Esempio n. 2
0
 public String[,] getEmployeesInformation()
 {
     DBData.updateDateSet();
     employees = DBData.getEmployeesInformation();
     return(employees);
 }