Exemplo n.º 1
0
 public Tram(TramType tramType, Sector sector, string status, int tramID)
 {
     TramType = tramType;
     Sector   = sector;
     Status   = status;
     TramID   = tramID;
 }
Exemplo n.º 2
0
 public override string ToString()
 {
     return(TramID.ToString() + " " + Status + " " + TramType.ToString());
 }