Exemplo n.º 1
0
 public StationNum(bool isUnReg = false, int num = 0)
 {
     Station = new Station(isUnReg);
     Num = num;
 }
Exemplo n.º 2
0
 public StationNum()
 {
     Station = new Station(false);
     Num = 0;
 }
Exemplo n.º 3
0
 public StationNum(string name, bool isUnReg = false, int num = 0)
 {
     Station = new Station(name, isUnReg);
     Num = num;
 }