Ejemplo n.º 1
0
        public FEN_User(modeOuverture mode = modeOuverture.CREATION, int?id = null)
        {
            this.mode = mode;
            this.id   = id;

            InitializeComponent();
        }
Ejemplo n.º 2
0
 public FEN_ProposerTrajet(modeOuverture mode = modeOuverture.CREATION, int?id = null)
 {
     InitializeComponent();
     this.mode          = mode;
     this.id            = id;
     this.listeEtapes   = new List <Etape>();
     this.listeVehicule = new List <Vehicule>();
     this.i             = 2;
 }