Exemple #1
0
        private void NewShunt()
        {
            var shunt = new ShuntMove(station.ParentTimetable);

            arrDep.ShuntMoves.Add(shunt);
            RefreshList();
        }
Exemple #2
0
        private void addButton_Click(object sender, EventArgs e)
        {
            var shunt = new ShuntMove(station._parent);

            arrDep.ShuntMoves.Add(shunt);
            RefreshList();
        }