Example #1
0
        public GenreJeux GetModel()
        {
            GenreJeux _result = new GenreJeux();
            _result.id = this.id;
            _result.nom = this.nom;

            return _result;
        }
Example #2
0
 public GenreJeuxBU(GenreJeux genreJeux)
 {
     this.id = genreJeux.id;
     this.nom = genreJeux.nom;
 }