2016-11-18 18:06:16 +00:00
|
|
|
import java.util.Scanner;
|
|
|
|
import java.io.File;
|
|
|
|
|
|
|
|
public class Test{
|
|
|
|
public static void main(String [] args) throws Exception{
|
2016-11-19 10:46:30 +00:00
|
|
|
Scanner scDipendenti = new Scanner(new File("dipendenti.dat"));
|
|
|
|
Scanner scOreLavoro = new Scanner(new File("presenze.dat"));
|
2016-11-21 12:07:30 +00:00
|
|
|
Azienda azienda = new Azienda(scDipendenti);
|
|
|
|
azienda.calcolaPrint(scOreLavoro, System.out);
|
|
|
|
System.out.println("******");
|
|
|
|
scOreLavoro = new Scanner(new File("presenze.dat"));
|
|
|
|
Azienda az1= azienda.filtroOP();
|
|
|
|
az1.calcolaPrint(scOreLavoro, System.out);
|
2016-11-18 18:06:16 +00:00
|
|
|
}
|
|
|
|
}
|