E' stato aggiunta l'implementazione dell'interfaccia "Utilizzabile" alle classi "BeniDiConsumo" "CeneInRistoranti" "Vacanze"

This commit is contained in:
Simone Argenziano
2013-12-16 19:26:57 +01:00
parent efaf12c133
commit 55a38c675f
3 changed files with 21 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ import java.util.GregorianCalendar;
* Date: 16/12/13
* Time: 18.47
*/
public class CeneInRistoranti {
public class CeneInRistoranti implements Utilizzabile{
/**
*
@@ -30,5 +30,11 @@ public class CeneInRistoranti {
}
@Override
public boolean eAcquistabile() {
// TODO Auto-generated method stub
return false;
}
}