Exemplo n.º 1
0
 public DaoJoueur(Dbal mydbal, DAOPays theDaoPays, DaoPoste theDaoPoste, DaoEquipe theDaoEquipe)
 {
     this.thedbal      = mydbal;
     this.theDaoPays   = theDaoPays;
     this.theDaoPoste  = theDaoPoste;
     this.theDaoEquipe = theDaoEquipe;
 }
Exemplo n.º 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;
 }
Exemplo n.º 5
0
 public DaoAvis(Dbal mydbal, DaoClient theDaoCLient, DaoTheme theDaoTheme)
 {
     this.mydbal       = mydbal;
     this.theDaoCLient = theDaoCLient;
     this.theDaoTheme  = theDaoTheme;
 }
Exemplo n.º 6
0
 public DaoObstacle(Dbal dbal, DaoTheme theDaoTheme)
 {
     this.mydbal      = dbal;
     this.theDaoTheme = theDaoTheme;
 }
Exemplo n.º 7
0
 public DaoPays(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
Exemplo n.º 8
0
 public DaoPlacement_Obst(Dbal mydabal, DaoReservation theDaoReservation, DaoObstacle theDaoObstacle)
 {
     thedbal = mydabal;
     this.theDaoReservation = theDaoReservation;
     this.theDaoObstacle    = theDaoObstacle;
 }
Exemplo n.º 9
0
 public DaoVille(Dbal dbal)
 {
     mydbal = dbal;
 }
Exemplo n.º 10
0
 public DaoUtilisateur(Dbal dbal, DaoVille unDaoVille)
 {
     mydbal      = dbal;
     theDaoVille = unDaoVille;
 }
Exemplo n.º 11
0
 public DaoClient(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
Exemplo n.º 12
0
 public DaoEquipe(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
Exemplo n.º 13
0
 public DaoTransaction(Dbal mydbal, DaoTransaction theDaoTransaction)
 {
     this.mydbal            = mydbal;
     this.theDaoTransaction = theDaoTransaction;
 }
Exemplo n.º 14
0
 public DaoUtilisateur(Dbal dbal, DaoVille theDaoVille)
 {
     mydbal           = dbal;
     this.theDaoVille = theDaoVille;
 }
Exemplo n.º 15
0
 public DaoHeure(Dbal dbal)
 {
     mydbal = dbal;
 }
Exemplo n.º 16
0
 public DaoReservation(Dbal dbal, DaoReservation daoReservation)
 {
     this.mydbal            = dbal;
     this.theDaoReservation = daoReservation;
 }
 public DaoPlacement_Obst(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
Exemplo n.º 18
0
 public DaoSalle(Dbal dbal, DaoVille theDaoVille, DaoTheme theDaoTheme)
 {
     mydbal           = dbal;
     this.theDaoVille = theDaoVille;
     this.theDaoTheme = theDaoTheme;
 }
Exemplo n.º 19
0
 public DaoObstacle(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
Exemplo n.º 20
0
 public DaoTransaction(Dbal mydbal, DaoClient theDaoClient, DaoReservation theDaoReservation)
 {
     this.mydbal            = mydbal;
     this.theDaoClient      = theDaoClient;
     this.theDaoReservation = theDaoReservation;
 }
Exemplo n.º 21
0
 public DaoAvis(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
Exemplo n.º 22
0
 public DaoEquipe(Dbal mydbal, DaoJoueur theDaoJoueur)
 {
     this.thedbal      = mydbal;
     this.theDaoJoueur = theDaoJoueur;
 }
Exemplo n.º 23
0
 public DaoClient(Dbal dbal)
 {
     this.theDbal = dbal;
 }
Exemplo n.º 24
0
 public DaoTheme(Dbal dbal)
 {
     mydbal = dbal;
 }
 public DaoPoste(Dbal mydbal)
 {
     this.thedbal = mydbal;
 }
Exemplo n.º 26
0
 public DaoVille(Dbal dbal, DaoVille DaoVille)
 {
     this.mydbal      = dbal;
     this.theDaoVille = DaoVille;
 }
Exemplo n.º 27
0
 public DaoUtilisateur(Dbal dbal, DaoUtilisateur DaoUser)
 {
     this.mydbal     = dbal;
     this.theDaoUser = DaoUser;
 }
Exemplo n.º 28
0
 public DaoFromage(Dbal mydbal, DaoPays theDaoPays)
 {
     this.thedbal    = mydbal;
     this.theDaoPays = theDaoPays;
 }
Exemplo n.º 29
0
 public DaoTheme(Dbal dbal, DaoTheme DaoTheme)
 {
     this.mydbal      = dbal;
     this.theDaoTheme = DaoTheme;
 }