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);
        }
Beispiel #2
0
 public DaoFromage(Dbal mydbal, DaoPays theDaoPays)
 {
     this.thedbal    = mydbal;
     this.theDaoPays = theDaoPays;
 }
 public DaoJoueur(Dbal mydbal, DaoPays theDaoPays, DaoPoste theDaoPoste)
 {
     this.thedbal     = mydbal;
     this.theDaoPays  = theDaoPays;
     this.theDaoPoste = theDaoPoste;
 }