示例#1
0
 public DaoJoueur(Dbal mydbal, DAOPays theDaoPays, DaoPoste theDaoPoste, DaoEquipe theDaoEquipe)
 {
     this.thedbal      = mydbal;
     this.theDaoPays   = theDaoPays;
     this.theDaoPoste  = theDaoPoste;
     this.theDaoEquipe = theDaoEquipe;
 }
示例#2
0
 public DaoReservation(Dbal dbal, DaoClient theDaoClient, DaoSalle theDaoSalle, DaoUtilisateur theDaoUtilisateur, DaoTheme theDaoTheme)
 {
     mydbal                 = dbal;
     this.theDaoClient      = theDaoClient;
     this.theDaoSalle       = theDaoSalle;
     this.theDaoTheme       = theDaoTheme;
     this.theDaoUtilisateur = theDaoUtilisateur;
 }
        public override object ConvertFromString(string text, IReaderRow row, MemberMapData memberMapData)
        {
            Dbal    thedbal       = new Dbal("dbclubfromage");
            Pays    convertedPays = new Pays();
            DaoPays myDaoPays     = new DaoPays(thedbal);

            convertedPays = myDaoPays.SelectByName(text);
            return(convertedPays);
        }
 public DaoJoueur(Dbal mydbal, DaoPays theDaoPays, DaoPoste theDaoPoste)
 {
     this.thedbal     = mydbal;
     this.theDaoPays  = theDaoPays;
     this.theDaoPoste = theDaoPoste;
 }
示例#5
0
 public DaoAvis(Dbal mydbal, DaoClient theDaoCLient, DaoTheme theDaoTheme)
 {
     this.mydbal       = mydbal;
     this.theDaoCLient = theDaoCLient;
     this.theDaoTheme  = theDaoTheme;
 }
示例#6
0
 public DaoObstacle(Dbal dbal, DaoTheme theDaoTheme)
 {
     this.mydbal      = dbal;
     this.theDaoTheme = theDaoTheme;
 }
示例#7
0
 public DaoPays(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
示例#8
0
 public DaoPlacement_Obst(Dbal mydabal, DaoReservation theDaoReservation, DaoObstacle theDaoObstacle)
 {
     thedbal = mydabal;
     this.theDaoReservation = theDaoReservation;
     this.theDaoObstacle    = theDaoObstacle;
 }
示例#9
0
 public DaoVille(Dbal dbal)
 {
     mydbal = dbal;
 }
示例#10
0
 public DaoUtilisateur(Dbal dbal, DaoVille unDaoVille)
 {
     mydbal      = dbal;
     theDaoVille = unDaoVille;
 }
示例#11
0
 public DaoClient(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
示例#12
0
 public DaoEquipe(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
 public DaoTransaction(Dbal mydbal, DaoTransaction theDaoTransaction)
 {
     this.mydbal            = mydbal;
     this.theDaoTransaction = theDaoTransaction;
 }
示例#14
0
 public DaoUtilisateur(Dbal dbal, DaoVille theDaoVille)
 {
     mydbal           = dbal;
     this.theDaoVille = theDaoVille;
 }
示例#15
0
 public DaoHeure(Dbal dbal)
 {
     mydbal = dbal;
 }
 public DaoReservation(Dbal dbal, DaoReservation daoReservation)
 {
     this.mydbal            = dbal;
     this.theDaoReservation = daoReservation;
 }
 public DaoPlacement_Obst(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
示例#18
0
 public DaoSalle(Dbal dbal, DaoVille theDaoVille, DaoTheme theDaoTheme)
 {
     mydbal           = dbal;
     this.theDaoVille = theDaoVille;
     this.theDaoTheme = theDaoTheme;
 }
示例#19
0
 public DaoObstacle(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
示例#20
0
 public DaoTransaction(Dbal mydbal, DaoClient theDaoClient, DaoReservation theDaoReservation)
 {
     this.mydbal            = mydbal;
     this.theDaoClient      = theDaoClient;
     this.theDaoReservation = theDaoReservation;
 }
示例#21
0
 public DaoAvis(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
示例#22
0
 public DaoEquipe(Dbal mydbal, DaoJoueur theDaoJoueur)
 {
     this.thedbal      = mydbal;
     this.theDaoJoueur = theDaoJoueur;
 }
示例#23
0
 public DaoClient(Dbal dbal)
 {
     this.theDbal = dbal;
 }
示例#24
0
 public DaoTheme(Dbal dbal)
 {
     mydbal = dbal;
 }
 public DaoPoste(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
示例#26
0
 public DaoVille(Dbal dbal, DaoVille DaoVille)
 {
     this.mydbal      = dbal;
     this.theDaoVille = DaoVille;
 }
示例#27
0
 public DaoUtilisateur(Dbal dbal, DaoUtilisateur DaoUser)
 {
     this.mydbal     = dbal;
     this.theDaoUser = DaoUser;
 }
示例#28
0
 public DaoFromage(Dbal mydbal, DaoPays theDaoPays)
 {
     this.thedbal    = mydbal;
     this.theDaoPays = theDaoPays;
 }
示例#29
0
 public DaoTheme(Dbal dbal, DaoTheme DaoTheme)
 {
     this.mydbal      = dbal;
     this.theDaoTheme = DaoTheme;
 }