27 lines
611 B
Java
27 lines
611 B
Java
package fr.iutfbleau.projetIHM2022FI2.Permanent;
|
|
|
|
import fr.iutfbleau.projetIHM2022FI2.Permanent.Util.User;
|
|
import fr.iutfbleau.projetIHM2022FI2.Permanent.View.Connexion;
|
|
|
|
public class TestTexteMNP{
|
|
|
|
|
|
public static void main(String[] args) {
|
|
User chois=Connexion.seConnecter();
|
|
if(chois!=null){
|
|
if(chois==User.ROOT){
|
|
new fr.iutfbleau.projetIHM2022FI2.ROOT.Model.ModelRoot();
|
|
}
|
|
if(chois==User.ETUDIANT){
|
|
new fr.iutfbleau.projetIHM2022FI2.ETU.Model.ModelEtu();
|
|
}
|
|
if(chois==User.PROF){
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|