|
@@ -234,6 +234,8 @@ namespace CG67.FicheCollege.Domaine
|
|
|
|
|
|
|
|
private bool mAscenseur;
|
|
private bool mAscenseur;
|
|
|
|
|
|
|
|
|
|
+ private int mAccessibilite;
|
|
|
|
|
+
|
|
|
private bool mIsPrive;
|
|
private bool mIsPrive;
|
|
|
|
|
|
|
|
private int mEffectifTheorique;
|
|
private int mEffectifTheorique;
|
|
@@ -651,6 +653,13 @@ namespace CG67.FicheCollege.Domaine
|
|
|
get { return mCodePostal; }
|
|
get { return mCodePostal; }
|
|
|
set { mCodePostal = value; }
|
|
set { mCodePostal = value; }
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public int Accessibilite
|
|
|
|
|
+ {
|
|
|
|
|
+ get { return mAccessibilite; }
|
|
|
|
|
+ set { mAccessibilite = value; }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// sera utilisé pour l'affichage sur la première page.
|
|
/// sera utilisé pour l'affichage sur la première page.
|
|
|
/// </summary>
|
|
/// </summary>
|
|
@@ -1153,7 +1162,7 @@ namespace CG67.FicheCollege.Domaine
|
|
|
this.mCommune = commune;
|
|
this.mCommune = commune;
|
|
|
}
|
|
}
|
|
|
public Etablissement(string codeRNE, bool isPrive, int annee, string nom, string commune, string canton, string typeEtablissement, int anneeConstruction, string telephone, string email, string fax, string nomProprietaire, string adresse, string complementAdresse, int codePostal, string ville, string lienPhoto,string lienFichier,
|
|
public Etablissement(string codeRNE, bool isPrive, int annee, string nom, string commune, string canton, string typeEtablissement, int anneeConstruction, string telephone, string email, string fax, string nomProprietaire, string adresse, string complementAdresse, int codePostal, string ville, string lienPhoto,string lienFichier,
|
|
|
- bool isRestaurant,bool isInternat, bool ascenseur, int effectifTheorique,
|
|
|
|
|
|
|
+ bool isRestaurant,bool isInternat, bool ascenseur, int effectifTheorique, int accessibilite,
|
|
|
dlgLoadActionEducative loaderActionEducative,
|
|
dlgLoadActionEducative loaderActionEducative,
|
|
|
dlgLoadClasseDecouverte loaderClasseDecouverte,
|
|
dlgLoadClasseDecouverte loaderClasseDecouverte,
|
|
|
dlgLoadATC loaderATC,
|
|
dlgLoadATC loaderATC,
|
|
@@ -1194,6 +1203,7 @@ namespace CG67.FicheCollege.Domaine
|
|
|
this.mIsInternat = isInternat;
|
|
this.mIsInternat = isInternat;
|
|
|
this.mAscenseur = ascenseur;
|
|
this.mAscenseur = ascenseur;
|
|
|
this.mEffectifTheorique = effectifTheorique;
|
|
this.mEffectifTheorique = effectifTheorique;
|
|
|
|
|
+ this.mAccessibilite = accessibilite;
|
|
|
this.LoaderActionEducative = loaderActionEducative;
|
|
this.LoaderActionEducative = loaderActionEducative;
|
|
|
this.LoaderClasseDecouverte = loaderClasseDecouverte;
|
|
this.LoaderClasseDecouverte = loaderClasseDecouverte;
|
|
|
this.LoaderATC = loaderATC;
|
|
this.LoaderATC = loaderATC;
|