1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace BEL
{
public class Informations
{
// ici nous declarons les variables utilisées dans l'application
// tables Users
public string nom { get; set; }
public string prenom { get; set; }
public string sexe { get; set; }
public string profil { get; set; }
public string login { get; set; }
public string mdp { get; set; }
public DateTime datecreat { get; set; }
// table profil
public string libprofil { get; set; }
//table mod
public string nommod { get; set; }
public string nomcompletmod { get; set; }
public string contactmod { get;set; }
//table client
public string nomclient { get; set; }
public string nomcomplet { get; set; }
public string contact { get; set; }
// tables banque
public string codebanque { get; set; }
public string libanque { get; set; }
public string comptebanque { get; set; }
public string creepar { get; set; }
public string modipar { get; set; }
// tables projet
public string titre_projet { get; set; }
public string lieu_projet { get; set; }
public string pays_projet { get; set; }
public string client_projet { get; set; }
public string mod_projet { get; set; }
public string perso_projet { get; set; }
public string nbperso_projet { get; set; }
public string adresse_projet { get; set; }
public string mont_projet { get; set; }
public string finance_projet { get; set; }
public string nbhomme_projet { get; set; }
public DateTime datdemar_projet1 { get; set; }
public DateTime datdemar_projet2 { get; set; }
public DateTime datachev1_projet1 { get; set; }
public DateTime datachev2_projet1 { get; set; }
public DateTime datachev1_projet2 { get; set; }
public DateTime datachev2_projet2 { get; set; }
public string mtetude_projet { get; set; }
public string mtsuivi_projet { get; set; }
public string mtetmdec_projet { get; set; }
public string consasso_projet { get; set; }
public string nbhcons_projet { get; set; }
public string respons_projet { get; set; }
public string descrip_projet { get; set; }
public string desserv_projet { get; set; }
public string creepar_projet { get; set; }
// tables contrat
public string num_contrat { get; set; }
public string type_contrat { get; set; }
public string titre { get; set; }
public string mont_contrat { get; set; }
public DateTime datdeb_contrat { get; set; }
public DateTime datfin_contrat { get; set; }
public string delai_contrat { get; set; }
public int montfac_contrat { get; set; }
public int montpaye_contrat { get; set; }
public string creeparc { get; set; }
public string modiparc { get; set; }
public int projet { get; set; }
public DateTime datecreationc { get; set; }
public DateTime datemodifc{ get; set; }
// tables image
public int idphoto { get; set; }
//public int projet { get; set; }
public Image photo { get; set; }
public string libphoto { get; set; }
//public string creepar { get; set; }
//public string modipar { get; set; }
}
} |
Partager