public Supportjeux GetModel()
        {
            Supportjeux _result = new Supportjeux();

            _result.id = this.id;
            _result.type = this.type;

            return _result;
        }
 public SupportJeuxBU(Supportjeux supportJeux)
 {
     this.id = supportJeux.id;
     this.type = supportJeux.type;
 }